创建一个项目

spring 生成日历工具类_spring 生成日历工具类


我们还是使用之前的数据库

引用插件

<plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.7</version>
                <configuration>
                    <verbose>true</verbose>
                    <overwrite>true</overwrite>
                </configuration>
</plugin>

新建插件数据库连接文件

在resources下新增datasource.properties

db.driverClassName=com.mysql.cj.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/Spring?serverTimezone=UTC
db.username=root
db.password=csdn

新建生成代码配置文件

在resources下新增 generatorConfig.xml
下面的配置文件有几个地方要注意:

  • classPathEntry
    这个的值有些文章说可以放到配置文件中,之里使用参数的方式,但是可能因环境的问题,可能会导致不能识别,或者是乱码。
  • commentGenerator 这个一定要注意,如果为true,那么生成的脚本文件,可能会重复多个,应该是一个BUG来的。
  • jdbcConnection 如果不使用数据库连接配置文件,这里也可以直接指定。
  • javaModelGenerator 生成model
  • sqlMapGenerator 生成脚本 xml
  • javaClientGenerator 生成接口文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
        PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

<generatorConfiguration>
    <!--导入属性配置-->
    <properties resource="datasource.properties"></properties>

    <!-- 配置mysql 驱动jar包路径.用了绝对路径 -->
    <classPathEntry location="D:\开发工具\mysql-connector-java-8.0.16/mysql-connector-java-8.0.16.jar" />

    <!-- context 是逆向工程的主要配置信息 -->
    <!-- id:起个名字 -->
    <!-- targetRuntime:设置生成的文件适用于那个 mybatis 版本 -->
    <context id="default" targetRuntime="MyBatis3">

        <!--optional,旨在创建class时,对注释进行控制-->
        <commentGenerator>
            <property name="suppressDate" value="false" />
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->
            <property name="suppressAllComments" value="false" />
        </commentGenerator>

        <!--jdbc的数据库连接-->
        <jdbcConnection driverClass="${db.driverClassName}"
                        connectionURL="${db.url}"
                        userId="${db.username}"
                        password="${db.password}">
        </jdbcConnection>

        <!--非必须,类型处理器,在数据库类型和java类型之间的转换控制-->
        <javaTypeResolver>
            <!-- 默认情况下数据库中的 decimal,bigInt 在 Java 对应是 sql 下的 BigDecimal 类 -->
            <!-- 不是 double 和 long 类型 -->
            <!-- 使用常用的基本类型代替 sql 包下的引用类型 -->
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>

        <!-- targetPackage:生成的实体类所在的包 -->
        <!-- targetProject:生成的实体类所在的硬盘位置 -->
        <javaModelGenerator targetPackage="com.csdn.demo.model"
                            targetProject=".\src\main\java">
            <!-- 是否允许子包 -->
            <property name="enableSubPackages" value="false" />
            <!-- 是否清理从数据库中查询出的字符串左右两边的空白字符 -->
            <property name="trimStrings" value="true" />
            <!-- 建立modal对象是否不可改变 即生成的modal对象不会有setter方法,只有构造方法 -->
            <property name="immutable" value="false" />
        </javaModelGenerator>

        <!-- targetPackage 和 targetProject:生成的 mapper 文件的包和位置 -->
        <sqlMapGenerator targetPackage="mappers"
                         targetProject=".\src\main\resources">
            <!-- 针对数据库的一个配置,是否把 schema 作为字包名 -->
            <property name="enableSubPackages" value="false" />
        </sqlMapGenerator>

        <!-- targetPackage 和 targetProject:生成的 interface 文件的包和位置 -->
        <javaClientGenerator type="XMLMAPPER"
                             targetPackage="com.csdn.demo.dao" targetProject=".\src\main\java">
            <!-- 针对 oracle 数据库的一个配置,是否把 schema 作为字包名 -->
            <property name="enableSubPackages" value="false" />
        </javaClientGenerator>
        <table tableName="user" domainObjectName="User"
               enableCountByExample="false" enableUpdateByExample="false"
               enableDeleteByExample="false" enableSelectByExample="false"
               selectByExampleQueryId="false">
        </table>
    </context>
</generatorConfiguration>

项目结构如下

spring 生成日历工具类_spring_02

生成代码

双击就会生成代码了

spring 生成日历工具类_spring_03


下面是生成的文件

spring 生成日历工具类_java_04

指写xml目录和model目录

mybatis.mapper-locations=classpath:mappers/*.xml
mybatis.type-aliases-package=com.csdn.demo.model

spring.datasource.url=jdbc:mysql://localhost:3306/Spring?serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=csdn
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

测试

增加一个UserController ,新增一个方法getUserById

package com.csdn.demo.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.csdn.demo.model.User;

@RestController
public class UserController {
    @Autowired
    private com.csdn.demo.dao.UserMapper userMapper;

    @RequestMapping("/getUserById")
    public User getUserById(long id) {
        User user = userMapper.selectByPrimaryKey(id);
        return user;
    }
}

运行项目,浏览器输入地址:http://127.0.0.1:8080/getUserById?id=62

spring 生成日历工具类_bc_05