Mybatis逆向工程可以极大节省时间,但是由于固定模板,不灵活,我不太喜欢使用。
下面介绍如何启动mybatis逆向工程。不结合整合了,单独一mybatis项目为例,整合步骤大致相同。
第一步:导入依赖或者下载jar包,官方地址
https://github.com/mybatis/generator/releases
第二步:
建立配置文件:需要修改生成代码位置的,配置中有详细备注。
<?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> <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <!-- 是否去除自动生成的注释 --> <property name="suppressAllComments" value="true"/> </commentGenerator> <!-- Mysql数据库连接的信息:驱动类、连接地址、用户名、密码 --> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/ums" userId="root" password="root"> </jdbcConnection> <!-- Oracle数据库 <jdbcConnection driverClass="oracle.jdbc.OracleDriver" connectionURL="jdbc:oracle:thin:@127.0.0.1:1521:yycg" userId="yycg" password="yycg"> </jdbcConnection> --> <!-- 默认为false,把JDBC DECIMAL 和NUMERIC类型解析为Integer,为true时 把JDBC DECIMAL 和NUMERIC类型解析为java.math.BigDecimal --> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!-- targetProject:生成POJO类的位置 --> <javaModelGenerator targetPackage="com.zb.pojo" targetProject=".\src"> <!-- enableSubPackages:是否让schema作为包的后缀 --> <property name="enableSubPackages" value="false"/> <!-- 从数据库返回的值被清理前后的空格 --> <property name="trimStrings" value="true"/> </javaModelGenerator> <!-- targetProject:mapper映射文件生成的位置 --> <sqlMapGenerator targetPackage="com.zb.mapper" targetProject=".\src"> <!-- enableSubPackages:是否让schema作为包的后缀 --> <property name="enableSubPackages" value="false"/> </sqlMapGenerator> <!-- targetProject:mapper接口生成的的位置 --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.zb.mapper" targetProject=".\src"> <!-- enableSubPackages:是否让schema作为包的后缀 --> <property name="enableSubPackages" value="false"/> </javaClientGenerator> <!-- 指定数据表 --> <table schema="" tableName="user"></table> <table schema="" tableName="department"></table> <!-- 有些表的字段需要指定java类型 <table schema="DB2ADMIN" tableName="ALLTYPES" domainObjectName="Customer" > <property name="useActualColumnNames" value="true"/> <generatedKey column="ID" sqlStatement="DB2" identity="true" /> <columnOverride column="DATE_FIELD" property="startDate" /> <ignoreColumn column="FRED" /> <columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" /> </table> --> </context> </generatorConfiguration>
固定格式代码,环境配置成功后复制直接运行就自动生成代码。
import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.ConfigurationParser; import org.mybatis.generator.exception.XMLParserException; import org.mybatis.generator.internal.DefaultShellCallback; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class GeneratorSqlmap { public void generator() throws Exception { List<String> warnings = new ArrayList<String>(); boolean overwrite = true; // 指定配置文件 File configFile = new File("./config/generatorConfig.xml"); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = null; config = cp.parseConfiguration(configFile); DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); myBatisGenerator.generate(null); } // 执行main方法以生成代码 public static void main(String[] args) { try { GeneratorSqlmap generatorSqlmap = new GeneratorSqlmap(); generatorSqlmap.generator(); } catch ( Exception e) { e.printStackTrace(); } } }
第三步:本文重点
实际是我用了一下,对于其中一些方法的认识,记录一下。
//增 //此方法直接插入,如数据库设置默认值,直接覆盖,插入值为null也会覆盖为null。 departmentMapper.insert(department); //此方法直插入有属性的值,对于设置为null的属性,不会覆盖数据库原默认值 departmentMapper.insertSelective(department);
//删
//第一个方法 根据主键删除无需多说
departmentMapper.deleteByPrimaryKey(1); //第二个方法根据条件删除 我们在逆向生成代码的时候每一个实体类都已一个对应的XXXExample,就是约束类,用于添加条件。 DepartmentExample departmentExample = new DepartmentExample(); DepartmentExample.Criteria criteria = departmentExample.createCriteria(); criteria.andNameIsNull(); departmentMapper.deleteByExample(departmentExample);
//改 方法有6个 不再是两个,有两个update方法特殊条件才会出现,我没出现过,就不解释了。
//突然发现看懂增删,这四个方法可以很好的看懂。不过多解释 //根据特定的限制条件进行修改,除了类型为text的列
departmentMapper.updateByExample(department,departmentExample); //根据特定限制条件修改所有列 departmentMapper.updateByExampleSelective(department,departmentExample);//根据特定的限制条件进行修改,除了类型为text的
departmentMapper.updateByPrimaryKey(department); //根据特定限制条件修改所有列 departmentMapper.updateByPrimaryKeySelective(department);//查 方法简单 不过多解释
departmentMapper.selectByPrimaryKey(); departmentMapper.selectByExample();
此就是我总结的mybatis逆向工程。