mybatis-generator-maven逆向工程
程序员文章站
2022-03-13 16:59:06
在idea 中使用 mybatis的 mybatis-generator-maven-plugin 可以根据数据库 生成 dao层,pojo类,Mapper文件。 一: 在 pom.xml 中添加相关插件依赖。 二:创建 generatorConfig.xml 配置文件 数据库配置文件 applic ......
在idea 中使用 mybatis的 mybatis-generator-maven-plugin 可以根据数据库 生成 dao层,pojo类,mapper文件。
一: 在 pom.xml 中添加相关插件依赖。
1 <!-- mysql 连接驱动依赖 --> 2 <dependency> 3 <groupid>mysql</groupid> 4 <artifactid>mysql-connector-java</artifactid> 5 </dependency> 6 7 <!-- junit --> 8 <dependency> 9 <groupid>junit</groupid> 10 <artifactid>junit</artifactid> 11 <version>4.12</version> 12 </dependency> 13 <dependency> 14 <groupid>org.mybatis.generator</groupid> 15 <artifactid>mybatis-generator-core</artifactid> 16 <version>1.3.2</version> 17 </dependency> 18 <dependency> 19 <groupid>log4j</groupid> 20 <artifactid>log4j</artifactid> 21 <version>1.2.17</version> 22 </dependency> 23 <dependency> 24 <groupid>org.mybatis</groupid> 25 <artifactid>mybatis</artifactid> 26 <version>3.2.6</version> 27 </dependency> 28 </dependencies>
1 <plugin> 2 <groupid>org.mybatis.generator</groupid> 3 <artifactid>mybatis-generator-maven-plugin</artifactid> 4 <version>1.3.5</version> 5 <configuration> 6 <configurationfile>src/main/resources/generatorconfig.xml</configurationfile> 7 <verbose>true</verbose> 8 <overwrite>true</overwrite> 9 </configuration> 10 11 </plugin>
二:创建 generatorconfig.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> <!--一.导入属性配置--> <properties resource="generator.properties"></properties> <!--二.在mbg工作的时候,需要额外加载的依赖包 location属性指明加载jar/zip包的全路径--> <classpathentry location="${jdbc.driverlocation}"/> <!-- 三:context:生成一组对象的环境 id:必选,上下文id,用于在生成错误时提示 defaultmodeltype:指定生成对象的样式 1,conditional:类似hierarchical; 2,flat:所有内容(主键,blob)等全部生成在一个对象中; 3,hierarchical:主键生成一个xxkey对象(key class),blob等单独生成一个对象,其他简单属性在一个对象中(record class) targetruntime: 1,mybatis3:默认的值,生成基于mybatis3.x以上版本的内容,包括xxxbysample; 2,mybatis3simple:类似mybatis3,只是不生成xxxbysample; introspectedcolumnimpl:类全限定名,用于扩展mbg --> <context id="tables" targetruntime="mybatis3"> <plugin type="org.mybatis.generator.plugins.equalshashcodeplugin"/> <!-- 不生成注释 --> <commentgenerator> <property name="suppressdate" value="true"/> <property name="suppressallcomments" value="true"/> </commentgenerator> <!--jdbc的数据库连接 --> <jdbcconnection driverclass="${jdbc.driverclass}" connectionurl="${jdbc.connectionurl}" userid="${jdbc.username}" password="${jdbc.password}"> <!-- 这里面也可以设置property属性,每一个property属性都设置到配置的driver上 --> </jdbcconnection> <!-- java类型处理器 用于处理db中的类型到java中的类型,默认使用javatyperesolverdefaultimpl; 注意一点,默认会先尝试使用integer,long,short等来对应decimal和 numeric数据类型; --> <javatyperesolver type="org.mybatis.generator.internal.types.javatyperesolverdefaultimpl"> <!-- true:使用bigdecimal对应decimal和 numeric数据类型 false:默认, scale>0;length>18:使用bigdecimal; scale=0;length[10,18]:使用long; scale=0;length[5,9]:使用integer; scale=0;length<5:使用short; --> <property name="forcebigdecimals" value="false"/> </javatyperesolver> <!-- java模型创建器,是必须要的元素 负责:1,key类(见context的defaultmodeltype);2,java类;3,查询类 targetpackage:生成的类要放的包,真实的包受enablesubpackages属性控制; targetproject:目标项目,指定一个存在的目录下,生成的内容会放到指定目录中,如果目录不存在,mbg不会自动建目录 --> <javamodelgenerator targetpackage="com.springweekend.week.pojo" targetproject="src/main/java"> <!-- 是否对model添加 构造函数 --> <property name="constructorbased" value="true"/> <!--是否允许子包,即targetpackage.schemaname.tablename--> <!-- 在targetpackage的基础上,根据数据库的schema再生成一层package,最终生成的类放在这个package下,默认为false --> <property name="enablesubpackages" value="false"/> <!-- 建立的model对象是否 不可改变 即生成的model对象不会有 setter方法,只有构造方法 --> <property name="immutable" value="true"/> <!-- 给model添加一个父类 ,设置一个根对象, 如果设置了这个根对象,那么生成的keyclass或者recordclass会继承这个类;在table的rootclass属性中可以覆盖该选项 注意:如果在key class或者record class中有root class相同的属性,mbg就不会重新生成这些属性了,包括: 1,属性名相同,类型相同,有相同的getter/setter方法; --> <!--<property name="rootclass" value="com.foo.louis.hello"/>--> <!-- 是否对类char类型的列的数据进行trim操作 --> <property name="trimstrings" value="true"/> </javamodelgenerator> <!--mapper映射文件生成所在的目录 为每一个数据库的表生成对应的sqlmap文件org.louis.hometutor.domain --> <sqlmapgenerator targetpackage="com.springweekend.week.sql" targetproject="src/main/java"> <property name="enablesubpackages" value="false"/> </sqlmapgenerator> <!-- 客户端代码,生成易于使用的针对model对象和xml配置文件 的代码 type="annotatedmapper",生成java model 和基于注解的mapper对象 type="mixedmapper",生成基于注解的java model 和相应的mapper对象 type="xmlmapper",生成sqlmap xml文件和独立的mapper接口 --> <javaclientgenerator targetpackage="com.springweekend.week.dao" targetproject="src/main/java" type="xmlmapper"> <property name="enablesubpackages" value="true"/> </javaclientgenerator> <!-- 指定数据库表 此处还有很多自定义配置,根据个人需求进行设置即可 --> <!--<table tablename="user"></table>--> <!--<table tablename="order"></table>--> <!--<table tablename="detail"></table>--> <!--<table tablename="item"></table>--> <!-- 选择一个table来生成相关文件,可以有一个或多个table,必须要有table元素 选择的table会生成一下文件: 1,sql map文件 2,生成一个主键类; 3,除了blob和主键的其他字段的类; 4,包含blob的类; 5,一个用户生成动态查询的条件类(selectbyexample, deletebyexample),可选; 6,mapper接口(可选) tablename(必要):要生成对象的表名; 注意:大小写敏感问题。正常情况下,mbg会自动的去识别数据库标识符的大小写敏感度,在一般情况下,mbg会 根据设置的schema,catalog或tablename去查询数据表,按照下面的流程: 1,如果schema,catalog或tablename中有空格,那么设置的是什么格式,就精确的使用指定的大小写格式去查询; 2,否则,如果数据库的标识符使用大写的,那么mbg自动把表名变成大写再查找; 3,否则,如果数据库的标识符使用小写的,那么mbg自动把表名变成小写再查找; 4,否则,使用指定的大小写格式查询; 另外的,如果在创建表的时候,使用的""把数据库对象规定大小写,就算数据库标识符是使用的大写,在这种情况下也会使用给定的大小写来创建表名; 这个时候,请设置delimitidentifiers="true"即可保留大小写格式; 可选: 1,schema:数据库的schema; 2,catalog:数据库的catalog; 3,alias:为数据表设置的别名,如果设置了alias,那么生成的所有的select sql语句中,列名会变成:alias_actualcolumnname 4,domainobjectname:生成的domain类的名字,如果不设置,直接使用表名作为domain类的名字;可以设置为somepck.domainname,那么会自动把domainname类再放到somepck包里面; 5,enableinsert(默认true):指定是否生成insert语句; 6,enableselectbyprimarykey(默认true):指定是否生成按照主键查询对象的语句(就是getbyid或get); 7,enableselectbyexample(默认true):mybatis3simple为false,指定是否生成动态查询语句; 8,enableupdatebyprimarykey(默认true):指定是否生成按照主键修改对象的语句(即update); 9,enabledeletebyprimarykey(默认true):指定是否生成按照主键删除对象的语句(即delete); 10,enabledeletebyexample(默认true):mybatis3simple为false,指定是否生成动态删除语句; 11,enablecountbyexample(默认true):mybatis3simple为false,指定是否生成动态查询总条数语句(用于分页的总条数查询); 12,enableupdatebyexample(默认true):mybatis3simple为false,指定是否生成动态修改语句(只修改对象中不为空的属性); 13,modeltype:参考context元素的defaultmodeltype,相当于覆盖; 14,delimitidentifiers:参考tablename的解释,注意,默认的delimitidentifiers是双引号,如果类似mysql这样的数据库,使用的是`(反引号,那么还需要设置context的beginningdelimiter和endingdelimiter属性) 15,delimitallcolumns:设置是否所有生成的sql中的列名都使用标识符引起来。默认为false,delimitidentifiers参考context的属性 注意,table里面很多参数都是对javamodelgenerator,context等元素的默认属性的一个复写; --> <table tablename="student" domainobjectname="student" enablecountbyexample="false" enableupdatebyexample="false" enabledeletebyexample="false" enableselectbyexample="false" selectbyexamplequeryid="false"> <!-- 如果设置为true,生成的model类会直接使用column本身的名字,而不会再使用驼峰命名方法,比如born_date,生成的属性名字就是born_date,而不会是borndate --> <property name="useactualcolumnnames" value="flase"/> </table> </context> </generatorconfiguration>
数据库配置文件 application.properties
jdbc.driverlocation=e:\\software\\maven3.5\\repository\\mysql\\mysql-connector-java\\8.0.15\\mysql-connector-java-8.0.15.jar jdbc.driverclass=com.mysql.cj.jdbc.driver jdbc.connectionurl=jdbc:mysql://127.0.0.1:3306/test?useunicode=true&characterencoding=utf-8&servertimezone=gmt%2b8&nullcatalogmeanscurrent=true jdbc.username=root jdbc.password=123789
这是添加后控制器输出日志:
[info] scanning for projects... [info] [info] -----------------------< com.springweekend:week >----------------------- [info] building week 0.0.1-snapshot [info] --------------------------------[ jar ]--------------------------------- [info] [info] --- mybatis-generator-maven-plugin:1.3.5:generate (default-cli) @ week --- [info] connecting to the database [info] introspecting table student [info] generating record class for table student [info] generating mapper interface for table student [info] generating sql map for table student [info] saving file studentmapper.xml [info] saving file student.java [info] saving file studentmapper.java [warning] existing file e:\software\week\src\main\java\com\springweekend\week\pojo\student.java was overwritten [warning] existing file e:\software\week\src\main\java\com\springweekend\week\dao\studentmapper.java was overwritten [info] ------------------------------------------------------------------------ [info] build success [info] ------------------------------------------------------------------------ [info] total time: 0.918 s [info] finished at: 2019-04-12t18:06:46+08:00 [info] ------------------------------------------------------------------------
如果不添加的话,就会出现警告:
[info] scanning for projects... [info] [info] -----------------------< com.springweekend:week >----------------------- [info] building week 0.0.1-snapshot [info] --------------------------------[ jar ]--------------------------------- [info] [info] --- mybatis-generator-maven-plugin:1.3.5:generate (default-cli) @ week --- [info] connecting to the database [info] introspecting table student [info] generating record class for table student [info] generating mapper interface for table student [info] generating sql map for table student [info] generating record class for table student [info] generating mapper interface for table student [info] generating sql map for table student [info] saving file studentmapper.xml [info] saving file studentmapper.xml [info] saving file student.java [info] saving file studentmapper.java [info] saving file student.java [info] saving file studentmapper.java [warning] table configuration student matched more than one table (test..student,nba..student) [warning] cannot obtain primary key information from the database, generated objects may be incomplete [warning] cannot obtain primary key information from the database, generated objects may be incomplete [warning] existing file e:\software\week\src\main\java\com\springweekend\week\pojo\student.java was overwritten [warning] existing file e:\software\week\src\main\java\com\springweekend\week\dao\studentmapper.java was overwritten [warning] existing file e:\software\week\src\main\java\com\springweekend\week\pojo\student.java was overwritten [warning] existing file e:\software\week\src\main\java\com\springweekend\week\dao\studentmapper.java was overwritten [info] ------------------------------------------------------------------------ [info] build success [info] ------------------------------------------------------------------------ [info] total time: 1.197 s [info] finished at: 2019-04-12t18:03:51+08:00 [info] ------------------------------------------------------------------------ process finished with exit code 0
另外,添加命令行:-dmybatis.generator.overwrite=true(如果数据库中表改动了,就可以对创建的dao ,pojo,mapper文件重载)
mybatis-generator:generate(显示运行的详细信息)
启动:
上一篇: 两部电梯都很紧张
下一篇: 我堂哥骑摩托车撞猪上了