Springboot整合Mybatis配置Maven的generator插件
Posted 拯代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot整合Mybatis配置Maven的generator插件相关的知识,希望对你有一定的参考价值。
1,添加依赖
2,配置文件
<?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>
<!-- 数据库驱动包位置 -->
<!-- <classPathEntry location="D:\\generator\\mysql-connector-java-5.1.18-bin.jar" />-->
<!--id是自己起的名字-->
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<!--是否去除自动生成的注释 true:是 false:否-->
<property name="suppressAllComments" value="true" />
</commentGenerator>
<!-- 数据库链接URL、用户名、密码 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/demo" userId="root" password="123.com">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>
<!-- 生成模型的包名和位置 -->
<javaModelGenerator targetPackage="com.bdqn.springbootmybatis.pojo" targetProject=".\\src\\main\\java">
<!--enableSubPackages是否让schema作为包的后缀名-->
<property name="enableSubPackages" value="true" />
<!--从数据库返回的值清理前后的空格-->
<property name="trimStrings" value="true" />
</javaModelGenerator>
<!-- 生成的映射文件包名和位置 -->
<sqlMapGenerator targetPackage="com.bdqn.springbootmybatis.mapper" targetProject=".\\src\\main\\java">
<!--enableSubPackages是否让schema作为包的后缀名-->
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<!-- 生成DAO的包名和位置 -->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.bdqn.springbootmybatis.mapper" targetProject=".\\src\\main\\java">
<!--enableSubPackages是否让schema作为包的后缀名-->
<property name="enableSubPackages" value="true" />
</javaClientGenerator>
<!-- 要生成那些表(更改tableName和domainObjectName就可以) -->
<table tableName="user" domainObjectName="Table1" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false" />
</context> </generatorConfiguration>
3,运行
以上是关于Springboot整合Mybatis配置Maven的generator插件的主要内容,如果未能解决你的问题,请参考以下文章
springboot---整合druid连接池---连接oracle数据库---整合mybatis---整合thymeleaf---日志配置
SpringBoot整合ORM开发框架MyBatis和JPA
springboot整合mybatis(配置模式+注解模式)