SpringBoot + thymeleaf 小项目-用户增删查改 CURD

SpringBoot + thymeleaf 小项目-用户增删查改 CURD

一、创建SpringBoot项目(略)

二、配置文件
1、添加逆向工程GeneratorMapper.xml文件到根目录



<generatorConfiguration>
    <!- QQQQQQ需要更改的地方--->
    
    <classPathEntry location="D:\study\java\1package and tool\MySql Connector Java 5.1.23\mysql-connector-java-5.1.23-bin.jar"/>
    
    <context id="tables" targetRuntime="MyBatis3">
        
        <commentGenerator>
            <property name="suppressAllComments" value="true" />
        commentGenerator>
        <!- QQQQQQ需要更改的地方--->
        <!-配置数据库连接信息 -->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://localhost:3306/springboot"
                        userId="root"
                        password="123456">
        jdbcConnection>
        
         <!- QQQQQQ需要更改的地方 文件生成路径--->
        
        <javaModelGenerator targetPackage="com.potato.stumanager2.domain"
                            targetProject="src/main/java">
            <property name="enableSubPackages" value="false" />
            <property name="trimStrings" value="false" />
        javaModelGenerator>
        
         <!- QQQQQQ需要更改的地方 文件生成路径--->
        
        <sqlMapGenerator targetPackage="com.potato.stumanager2.dao"
                         targetProject="src/main/java">
            <property name="enableSubPackages" value="false" />
        sqlMapGenerator>
        
         <!- QQQQQQ需要更改的地方 文件生成路径--->
        
        <javaClientGenerator type="XMLMAPPER"
                             targetPackage="com.potato.stumanager2.dao" targetProject="src/main/java">
            <property name="enableSubPackages" value="false" />
        javaClientGenerator>
        
         <!- QQQQQQ需要更改的地方 mysql数据表名--->
        
        <table tableName="t_Student" domainObjectName="Student"
               enableCountByExample="false"
               enableUpdateByExample="false"
               enableDeleteByExample="false"
               enableSelectByExample="false"
               selectByExampleQueryId="false"/>

    context>
generatorConfiguration>

2、添加pom.xml依赖

-----未完待续-----

你可能感兴趣的:(java项目,java,spring,boot)