springboot 通用Mapper使用

Posted 点点_滴滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 通用Mapper使用相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/dwf_android/article/details/79359360

https://www.cnblogs.com/larryzeal/p/5874107.html

https://blog.csdn.net/qq_19260029/article/details/78010369

https://www.cnblogs.com/jinjiyese153/p/8579972.html

<!--通用Mapper start-->
        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper-spring-boot-starter</artifactId>
            <version>2.1.5</version>
        </dependency>
        <!--通用Mapper end-->
mapper:
  mappers: com.hc.commonMapper.tkMyMapper
  identity: mysql
  not-empty: false
package com.hc.commonMapper;

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


public interface tkMyMapper<T> extends Mapper<T>, MySqlMapper<T> {
}//end
package com.hc.tkMapper;

import com.hc.commonMapper.tkMyMapper;
import com.hc.entity.liehu_app;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Service;

@Service
@Mapper
public interface hc_appMapper extends tkMyMapper<hc_app> {

}//end

 

以上是关于springboot 通用Mapper使用的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot集成MyBatis通用Mapper4

spring boot集成MyBatis 通用Mapper 使用总结

springboot 通用Mapper使用

Springboot集成mybatis通用Mapper与分页插件PageHelper(推荐)

Java 微服务 day02 源代码 SpringBoot 实战开发 整合Mybatis(数据库连接池),通用Mapper整合,业务层整合

Java 微服务 day02 源代码 SpringBoot 实战开发 整合Mybatis(数据库连接池),通用Mapper整合,业务层整合