STS中配置MyBatis代码生成器

匿名 (未验证) 提交于 2019-12-02 23:05:13

1、STS工具菜单项Help > Eclipse Marketplace...

2、输入“mybatis”关键字搜索

3、选择MyBatis Generator 1.3.7进行安装

4、安装成功后重启ide

5、为项目创建mybatis代码生成配置文件

配置如下:

<?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="E:\Maven\hs-MavenRepsitory\repository\mysql\mysql-connector-java\5.1.46\mysql-connector-java-5.1.46.jar"/>       <context id="MySQL" targetRuntime="MyBatis3">         <commentGenerator>                 <property name="suppressDate" value="true"/>                 <!-- 是否去除自动生成的注释 true:是 : false:否 -->                 <property name="suppressAllComments" value="true"/>             </commentGenerator>          <!--数据库链接URL,用户名、密码 -->     <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/test" userId="root" password="root"/>     <!--是否启用java.math.BigDecimal-->         <javaTypeResolver>                 <property name="forceBigDecimals" value="false"/>             </javaTypeResolver>         <!-- 生成模型的包名和位置-->         <javaModelGenerator targetPackage="com.lock.spring.boot.blog.model" targetProject="jpa-in-action/src/main/java">             <property name="enableSubPackages" value="true" />             <property name="trimStrings" value="true" />     </javaModelGenerator>     <!-- 生成DAO的包名和位置-->         <sqlMapGenerator targetPackage="com.lock.spring.boot.blog.mapper" targetProject="jpa-in-action/src/main/java">             <property name="enableSubPackages" value="true" />     </sqlMapGenerator>     <!-- 生成映射文件的包名和位置-->         <javaClientGenerator targetPackage="com.lock.spring.boot.blog.mapper" targetProject="jpa-in-action/src/main/java" type="XMLMAPPER">         <property name="enableSubPackages" value="true" />     </javaClientGenerator>     <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->         <table tableName="user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">         <property name="useActualColumnNames" value="true"/>       <!-- columnOverride column="???" property="???" /-->     </table>   </context> </generatorConfiguration>

6、右击配置文件, 选择Run As > Run Mybatis Generator

参考地址:http://www.mybatis.org/generator/running/runningWithEclipse.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!