欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

eclipse 集成MyBatis Generator插件使用

程序员文章站 2022-05-26 08:48:35
...

1.在线安装插件

在eclipse直接搜索MyBatis Generator安装,搜索第一个就是 安装后重启eclipse
eclipse 集成MyBatis Generator插件使用

2.生成generatorConfig.xml文件

项目右键——>new——>other 添加下图文件
eclipse 集成MyBatis Generator插件使用

<?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&amp;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
eclipse 集成MyBatis Generator插件使用