mybatis逆向工程 + 通用mapper

pom.xml

<!--MySQL-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.11</version>
        </dependency>

        <!--mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.1</version>
        </dependency>

        <!--通用 mapper-->
        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper-spring-boot-starter</artifactId>
            <version>1.2.4</version>
        </dependency>

        <!-- mybatis 逆向生成工具  -->
        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator</artifactId>
            <version>1.3.7</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator-maven-plugin</artifactId>
            <version>1.3.7</version>
        </dependency>

application.properties

# mybatis 配置
mybatis.type-aliases-package=com.demo.pojo
mybatis.mapper-locations=classpath:mapper/*.xml

# 通用 Mapper 配置
mapper.mappers=com.demo.MyMapper
mapper.not-empty=false
mapper.identity=MYSQL

generatorConfig.xml

和pom.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="datasource.properties"></properties><!--导入链接数据库的参数和驱动-->

    <context id="MysqlContext" targetRuntime="MyBatis3Simple" defaultModelType="flat">
        <property name="beginningDelimiter" value="`"/>
        <property name="endingDelimiter" value="`"/>
<!-- 配置生成pojo的序列化的插件,mybatis支持很多插件,这些插件都在 org.mybatis.generator.plugins包下  -->
        <plugin type="org.mybatis.generator.plugins.SerializablePlugin" />

        <!-- 配置生成pojo的toString()方法的插件,mybatis支持很多插件,这些插件都在 org.mybatis.generator.plugins包下 -->
        <plugin type="org.mybatis.generator.plugins.ToStringPlugin" />
   
        <!--结合通用Mapper插件 指定生成 Mapper 的继承模板-->
        <plugin type="tk.mybatis.mapper.generator.MapperPlugin">
            <property name="mappers" value="com.demo.utils.MyMapper"/>
        </plugin>
        
		<!--覆盖生成XML文件 每次执行,把以前的mapper.xml覆盖而不是合并-->
        <plugin type="org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin" />
        
        <!--注意, plugin 需要写在commentGenerator上面-->
        
        <commentGenerator>
            <!-- 是否去除自动生成的注释 true:是 : false:否 -->
            <property name="suppressAllComments" value="false" />
        </commentGenerator>

        <!-- 生成 JavaBean 对象重写 toString方法 -->
<!--        <plugin type="org.mybatis.generator.plugins.ToStringPlugin" />-->
        <!-- 生成 JavaBean 对象继承 Serializable 类 -->
<!--        <plugin type="org.mybatis.generator.plugins.SerializablePlugin" />-->
        <!-- 生成 JavaBean 对象重写 equals 和 hashCode 方法 -->
        <!-- <plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin" /> -->

        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
                        connectionURL="${db.url}"
                        userId="${db.username}"
                        password="${db.password}">
        </jdbcConnection>
        
        <!-- 对应生成的pojo所在包 -->
        <javaModelGenerator targetPackage="com.demo.pojo" targetProject="src/main/java">
            <!-- 是否对model添加 构造函数 -->
            <property name="constructorBased" value="true"/>
        </javaModelGenerator>

		<!-- 对应生成的mapper所在目录 -->
        <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"/>

		<!-- 配置mapper对应的java映射 -->
        <javaClientGenerator targetPackage="com.demo.mapper" targetProject="src/main/java"
                             type="XMLMAPPER"/>

		<!--指定要处理的数据库表 domainObjectName是指定生成的文件名,可不写 但发现如果有多个数据库名字一样,会有问题,所以最好写下-->
		 <table tableName="device" domainObjectName="Device">
            <!--新增时,能返回id-->
            <generatedKey  column="device_id" sqlStatement="SELECT LAST_INSERT_ID()"/>
        </table>
        <table tableName="print_file" domainObjectName="PrintFile">
            <generatedKey  column="file_id" sqlStatement="SELECT LAST_INSERT_ID()"/>
        </table>
		 
    </context>
</generatorConfiguration>

MyMapper

路径 com.demo.utils.MyMapper


import tk.mybatis.mapper.common.Mapper;
import tk.mybatis.mapper.common.MySqlMapper;

public interface MyMapper<T> extends Mapper<T>, MySqlMapper<T> {
    //TODO
    //FIXME 特别注意,该接口不能被扫描到,否则会出错
}

最后的执行文件GeneratorDisplay.java

import org.mybatis.generator.api.MyBatisGenerator;
import org.mybatis.generator.config.Configuration;
import org.mybatis.generator.config.xml.ConfigurationParser;
import org.mybatis.generator.internal.DefaultShellCallback;

import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class GeneratorDisplay {

	public void generator() throws Exception{

		List<String> warnings = new ArrayList<String>();
		boolean overwrite = true;
		//指定 逆向工程配置文件
		File configFile = new File("src/main/resources/generatorConfig.xml");
		ConfigurationParser cp = new ConfigurationParser(warnings);
		Configuration config = cp.parseConfiguration(configFile);
		DefaultShellCallback callback = new DefaultShellCallback(overwrite);
		MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config,
				callback, warnings);
		myBatisGenerator.generate(null);

	}

	public static void main(String[] args) throws Exception {
		try {
			GeneratorDisplay generatorSqlmap = new GeneratorDisplay();
			generatorSqlmap.generator();
		} catch (Exception e) {
			e.printStackTrace();
		}

	}
}

datasource.properties

db.url=jdbc:mysql://localhost:3306/gdpt_posmart_office?serverTimezone=UTC&useSSL=false
db.username=root
db.password=root
# 其他参数

常见问题

1.热部署冲突,提示 tk.mybatis.mapper.MapperException: tk.mybatis.mapper.provider.EmptyProvider中缺少selectOne方法!

https://blog.csdn.net/yinaoxiao7661/article/details/88737604

2.获取自增长id

方式一:
添加
useGeneratedKeys=“true” keyProperty=“fileId” keyColumn=“file_id”

<insert id="myInsert" parameterType="com.gdpt.crawlerprint.pojo.PrintFile"
          useGeneratedKeys="true" keyProperty="fileId" keyColumn="file_id">
    insert into cp_print_file (user_id, filename,
    file_type, upload_date)
    values (#{userId,jdbcType=INTEGER}, #{filename,jdbcType=VARCHAR},
    #{fileType,jdbcType=BIT}, #{uploadDate,jdbcType=TIMESTAMP})
  </insert>

获取自增长id

		printFileMapper.myInsert(printFile);
		int id = 0;
        if (printFile.getFileId() != null){
            id = printFile.getFileId();
        }

方式二:
generatorConfig.xml配置中

		<table tableName="print_file" domainObjectName="PrintFile">
            <!--新增时,能返回id-->
            <generatedKey  column="file_id" sqlStatement="SELECT LAST_INSERT_ID()"/>
        </table>

获取自增长id

		printFileMapper.insert(printFile);
		int id = 0;
        if (printFile.getFileId() != null){
            id = printFile.getFileId();
        }

3.常用接口解释

    //(1)mapper基础接口
    //select接口
      List<VirtualIpBean> vipList = vipMapper.select(vipBean);//根据实体中的属性值进行查询,查询条件使用等号
    VirtualIpBean vip = vipMapper.selectOne(vipBean);//根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号
    List<VirtualIpBean> vipList2 = vipMapper.selectAll();//查询全部结果,select(null)方法能达到同样的效果
    VirtualIpBean vip2 = vipMapper.selectByPrimaryKey(1);//根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号
    int count = vipMapper.selectCount(vipBean);//根据实体中的属性查询总数,查询条件使用等号
    //insert接口
    int a = vipMapper.insert(vipBean);//保存一个实体,null的属性也会保存,不会使用数据库默认值
    int a1 = vipMapper.insertSelective(vipBean);//保存实体,null的属性不会保存,会使用数据库默认值
    //update接口
    int b = vipMapper.updateByPrimaryKeySelective(vipBean);//根据主键更新属性不为null的值
    int c = vipMapper.updateByPrimaryKey(vipBean);//根据主键更新实体全部字段,null值会被更新
    //delete接口
    int d = vipMapper.delete(vipBean);//根据实体属性作为条件进行删除,查询条件使用等号
    int e = vipMapper.deleteByPrimaryKey(1);//根据主键字段进行删除,方法参数必须包含完整的主键属性
    //(2)Example方法
    Example example = new Example(VirtualIpBean.class);
    example.createCriteria().andEqualTo("id", 1);
    example.createCriteria().andLike("val", "1");
    //自定义查询
    List<VirtualIpBean> vipList3 = vipMapper.selectByExample(example);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值