1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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\16096\.m2\repository\mysql\mysql-connector-java\8.0.23\mysql-connector-java-8.0.23.jar"/>
- <context id="context" targetRuntime="MyBatis3">
- <commentGenerator>
- <property name="suppressAllComment" value="false"/>
- <property name="suppressDate" value="true"/>
- </commentGenerator>
- <jdbcConnection
- driverClass="com.mysql.jdbc.Driver"
- connectionURL="jdbc:mysql://localhost:3306/ShoppingWebsite"
- userId="root"
- password="123456"
- />
- <javaTypeResolver>
- <property name="forceBigDecimals" value="false"/>
- </javaTypeResolver>
- <javaModelGenerator targetPackage="WebsiteES.myBatis" targetProject="src/main/java">
- <property name="enableSubPackages" value="true"/>
- <property name="trimStrings" value="false"/>
- </javaModelGenerator>
- <sqlMapGenerator targetPackage="myBatisMap" targetProject="src/main/resources">
- <property name="enableSubPackages" value="true"/>
- </sqlMapGenerator>
- <javaClientGenerator targetPackage="WebsiteES.myBatis" targetProject="src/main/java" type="XMLMAPPER">
- <property name="enableSubPackages" value="true"/>
- </javaClientGenerator>
- <table
- tableName="userAccount"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- <table
- tableName="user_cart"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- <table
- tableName="store"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- <table
- tableName="goods"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- <table
- tableName="selectionGroup"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- <table
- tableName="selection"
- enableCountByExample="false"
- enableDeleteByExample="false"
- enableSelectByExample="false"
- enableUpdateByExample="false"
- />
- </context>
- </generatorConfiguration>
|