eclipse 集成MyBatis Generator插件使用
程序员文章站
2022-05-26 08:48:35
...
1.在线安装插件
在eclipse直接搜索MyBatis Generator安装,搜索第一个就是 安装后重启eclipse
2.生成generatorConfig.xml文件
项目右键——>new——>other 添加下图文件
<?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="C:\Users\why\.m2\repository\org\mybatis\mybatis\3.4.2\mybatis-3.4.2.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3" defaultModelType="flat">
<commentGenerator>
<property name="suppressDate" value="false"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码
1.一般jdbc数据库的版本6.x以上,都是com.mysql.cj.jdbc.Driver 其他的低版本就是com.mysql.cj.jdbc.Driver
-->
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
<!-- 这里不需要指定哪个数据库 在下面table标签里指定 -->
connectionURL="jdbc:mysql://127.0.0.1:3306?useUnicode=true&characterEncoding=UTF-8" userId="root" password="root">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator targetPackage="com.nsitd.sncp.db.bean" targetProject="nsitd-sr/src/main/java">
<property name="enableSubPackages" value="false"/><!-- 不添加后缀 -->
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<!-- <sqlMapGenerator targetPackage="mapping" targetProject="nsitd-sr/src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator> -->
<!-- 生成DAO的包名和位置-->
<!-- 1,ANNOTATEDMAPPER:会生成使用Mapper接口+Annotation的方式创建(SQL生成在annotation中),不会生成对应的XML;
2,MIXEDMAPPER:使用混合配置,会生成Mapper接口,并适当添加合适的Annotation,但是XML会生成在XML中;
3,XMLMAPPER:会生成Mapper接口,接口完全依赖XML -->
<javaClientGenerator type="ANNOTATEDMAPPER" targetPackage="com.nsitd.sncp.db.mapper" targetProject="nsitd-sr/src/main/java">
<property name="enableSubPackages" value="false"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名 catalog数据库名称 添加此属性解决了生成重复代码问题-->
<table catalog="SNCP_SR" tableName="ALM_CS" domainObjectName="AlmRecord"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
<property name="ignoreQualifiersAtRuntime" value="true"></property>
</table>
</context>
</generatorConfiguration>
3.代码生成
generatorConfig.xml右键,RunAs ->Run MyBatis Generator
上一篇: 解决IE下AjaxSubmit上传文件提示下载文件问题
下一篇: 那些年一起学习的PHP(三)
推荐阅读
-
IntelliJ IDEA中使用mybatis-generator的示例
-
Spring Boot2(二):使用Spring Boot2集成Mybatis缓存机制
-
Android开发的插件Code Generator与LayoutCreator的安装与使用,提升你的开发效率
-
eclipse安装插件UCDetector使用图解
-
MyBatis 分页插件 PageHelper 使用
-
IDEA 使用mybatis插件Free Mybatis plugin的步骤(推荐)
-
在eclipse中使用spring,springmvc,mybatis搭建web项目
-
Eclipse中php插件安装及Xdebug配置的使用详解
-
java中强大的免费的集成开发环境(IDE)eclipse的使用技巧及注意事项
-
Mybatis generator自动生成代码插件实例解析