|
|
<?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>
|
|
|
<!-- JDBC数据库驱动jar文件 -->
|
|
|
<classPathEntry location="H:\Maven\repository\mysql\mysql-connector-java\5.1.46\mysql-connector-java-5.1.46.jar" />
|
|
|
<context id="context1" defaultModelType="flat">
|
|
|
<!-- PO序列化 -->
|
|
|
<plugin type="org.mybatis.generator.plugins.SerializablePlugin">
|
|
|
</plugin>
|
|
|
<commentGenerator>
|
|
|
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
|
|
|
<property name="suppressAllComments" value="false" />
|
|
|
</commentGenerator>
|
|
|
|
|
|
<!-- 配置一个连接 -->
|
|
|
<jdbcConnection
|
|
|
driverClass="com.mysql.jdbc.Driver"
|
|
|
connectionURL="jdbc:mysql://127.0.0.1:3306/zx"
|
|
|
userId="root"
|
|
|
password="zxy19971014">
|
|
|
</jdbcConnection>
|
|
|
|
|
|
<javaTypeResolver>
|
|
|
<property name="forceBigDecimals" value="false" />
|
|
|
</javaTypeResolver>
|
|
|
|
|
|
<!--生成实体类存放位置 -->
|
|
|
<javaModelGenerator targetPackage="edu.zx.domin"
|
|
|
targetProject="src/main/java">
|
|
|
<property name="trimStrings" value="true" />
|
|
|
</javaModelGenerator>
|
|
|
|
|
|
<!--生成映射文件存放位置 -->
|
|
|
<sqlMapGenerator targetPackage="mapper"
|
|
|
targetProject="src/main/resources">
|
|
|
<property name="trimStrings" value="true" />
|
|
|
</sqlMapGenerator>
|
|
|
|
|
|
<!--生成Mapper接口存放位置 -->
|
|
|
<javaClientGenerator targetPackage="edu.peter.mapper"
|
|
|
targetProject="src/main/java" type="XMLMAPPER" />
|
|
|
|
|
|
<table schema="hunnu" tableName="goods_type" enableCountByExample="false"
|
|
|
enableUpdateByExample="false" enableDeleteByExample="false"
|
|
|
enableSelectByExample="false" selectByExampleQueryId="false">
|
|
|
</table>
|
|
|
<table schema="hunnu" tableName="goods" enableCountByExample="false"
|
|
|
enableUpdateByExample="false" enableDeleteByExample="false"
|
|
|
enableSelectByExample="false" selectByExampleQueryId="false">
|
|
|
</table>
|
|
|
</context>
|
|
|
</generatorConfiguration> |