1.打开工程的pom.xml文件添加如下插件依赖
<!--插件,自动生成生成文件--> <plugins> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> <verbose>true</verbose> <!--是否覆盖原有的文件--> <overwrite>true</overwrite> </configuration> </plugin> </plugins>
2.鼠标右击pom.xml文件,点击Reload project重新加载下工程
3.在资源文件夹(resources)下创建genetatorConfig.xml配置文件
genetatorConfig.xml文件内容如下,用的时候只需要更改自己的个人项目配置即可:
<?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> <!--配置文件,放在resource目录下即可--> <!--数据库驱动个人配置--> <classPathEntry location="E:/基于SpringBoot的前后端分离的订货系统/src/main/resources/mysql-connector-java-8.0.24.jar"/> <context id= "MysqLTables" targetRuntime= "MyBatis3"> <property name="autoDelimitKeywords" value= "true"/> <!--可以使用、包括字段名,避免字段名与sql保留字冲突报错--> <property name="beginningDeLimiter" value="`"/> <property name=" endingDeLimiter" value="`"/> <!-- optional, 旨在创建class时,对注释进行控制--> <commentGenerator> <property name= "suppressDate" value="true"/> <property name=" suppressAllComments" value="true"/> </commentGenerator> <!--数据库链接地址账号密码--> <jdbcConnection driverClass= "com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/ncpdata? useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull" userId="root" password="123456"> </jdbcConnection> <!--非必需,类型处理器,在数据库类型和java类型之间的转换控制--> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!--生成Model类存放位置--> <javaModelGenerator targetPackage=" com.myproj.ncpsystem.model.pojo" targetProject="src/main/java"> <!--是否允许子包,即targetPackage.schemaName.tableName--> <property name= "enableSubPackages" value="true"/> <!--是否对类CHAR类型的列的数据进行trim操作--> <property name="trimStrings" value="true"/> <!--建立的Model对象是否 不可改变 即生成的Model对象不会有setter方法,只有构造方法--> <property name=" immutable" value="false"/> </javaModelGenerator> <!--生成mapper映射文件存放位置--> <sqlMapGenerator targetPackage="mappens" targetProject="src/main/resources"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <!--生成Dao类存放位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="com.myproj.ncpsystem.model.dao" targetProject="src/main/java"> <property name= "enableSubPackages" value="true"/> </javaClientGenerator> <!--生成对应表及类名--> <table tableName="com_ncp_cart" domainObjectName= "Cart" enableCountByExample= "false " enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample= "false" selectByExampleQueryId="false"> </table> <table tableName="com_ncp_category" domainObjectName="Category" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> </table> <table tableName="com_ncp_order" domainObjectName= "Order" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId= "false"> </table> <table tableName="com_ncp_order_item" domainObjectName="OrderItem" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"> </context> </generatorConfiguration>
以下是生成的目录结构,仅供参考
收藏
赞