我是靠谱客的博主 甜蜜康乃馨,最近开发中收集的这篇文章主要介绍generatorConfig自生成代码 Mybatis,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

自生成代码不可修改 删除

pom依赖

<!--mybatis-->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
<?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>
<context id="base" targetRuntime="MyBatis3" defaultModelType="flat">
<!-- 生成的Java文件的编码 -->
<property name="javaFileEncoding" value="UTF-8"/>
<!-- 格式化java代码 -->
<property name="javaFormatter" value="org.mybatis.generator.api.dom.DefaultJavaFormatter"/>
<!-- 格式化XML代码 -->
<property name="xmlFormatter" value="org.mybatis.generator.api.dom.DefaultXmlFormatter"/>
<commentGenerator>
<!-- 是否生成注释代时间戳-->
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:-->
<property name="suppressAllComments" value="false"/>
<!--生成数据库注释-->
<property name="addRemarkComments" value="true"/>
</commentGenerator>
<jdbcConnection
connectionURL="jdbc:mysql://localhost:3306/jwt?useSSL=false&amp;characterEncoding=utf8&amp;AllowPublicKeyRetrieval=True"
driverClass="com.mysql.jdbc.Driver"
password="root"
userId="root"/>
<javaTypeResolver>
<!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.-->
<property name="forceBigDecimals" value="true"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置
${PROJECT_DIR}获取当前项目目录然后继续进行
-->
<javaModelGenerator targetPackage="com.ly.jwt.db.entity"
targetProject="${PROJECT_DIR}/src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="com.ly.jwt.db.mappers" targetProject="${PROJECT_DIR}/src/main/java">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO接口的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.ly.jwt.db.mapper"
targetProject="${PROJECT_DIR}/src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!--账号表-->
<table tableName="user_account" domainObjectName="UserAccount"
enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" selectByExampleQueryId="false">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<!--日志表-->
<table tableName="user_log" domainObjectName="UserLog"
enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" selectByExampleQueryId="false">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
</context>
</generatorConfiguration>

最后

以上就是甜蜜康乃馨为你收集整理的generatorConfig自生成代码 Mybatis的全部内容,希望文章能够帮你解决generatorConfig自生成代码 Mybatis所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部