Spirngboot 集成 mybatis-plus

依赖


dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
//    implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.2'
    implementation('com.baomidou:mybatis-plus-boot-starter:3.1.0')
    implementation('com.baomidou:mybatis-plus-generator:3.1.0')

    compileOnly 'org.projectlombok:lombok'
    runtimeOnly 'mysql:mysql-connector-java'
    annotationProcessor 'org.projectlombok:lombok'
    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }
}
  • 主要是mybatis-plus-boot-starter这个注解,里面包含了mybatis,不需要重复引入

配置文件

server:
  port: 10000


spring:
  datasource:
    url: jdbc:mysql://localhost:3307/JLCredit
    username: root
    password: 123456
    driver-class-name: com.mysql.cj.jdbc.Driver

mybatis-plus:
  #mapper的xml文件所在
  mapper-locations: classpath:mapper/*.xml
  configuration:
    #开启驼峰命名
    map-underscore-to-camel-case: true
  • 普通的连接mysql数据库
  • mybatis若要在xml文件中写sql,需要注意xml文件位置,这里是直接放在了resources/mapper路径下

开启事务

@EnableTransactionManagement
@SpringBootApplication
public class MybatisPlusApplication {

    public static void main(String[] args) {
        SpringApplication.run(MybatisPlusApplication.class, args);
    }

}


使用

配置

@Configuration
public class MyBatisPlusConfig {

    /**
     * mybatis-plus SQL执行效率插件【生产环境可以关闭】
     */
    @Bean
    public PerformanceInterceptor performanceInterceptor() {
        return new PerformanceInterceptor();
    }
    /**
     * 分页插件
     */
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }

}
  • performanceInterceptor在开启之后每次使用mybatis-plus会打印出执行的sql语句
  • paginationInterceptor则是分页工具

实体类

@Data
@TableName("user")
public class UserEntity implements Serializable {

    @TableId
    private String username;

    private String id;

    private String name;

    private String phone;


    @TableField(fill = FieldFill.INSERT) // 创建记录的时候需要填充
    private Date createTime;

    @TableField(fill = FieldFill.INSERT_UPDATE) // 创建和修改的时候都需要填充
    private Date updateTime;

}
  • 实体类@TableName映射表名
  • @TableField的自动填充通过以下配置实现创建时间和修改时间的插入与更新:
@Component
public class MyMetaObjectHandler implements MetaObjectHandler {

    @Override
    public void insertFill(MetaObject metaObject) {
        this.setFieldValByName("createTime", new Date(), metaObject);
    }

    @Override
    public void updateFill(MetaObject metaObject) {
        this.setFieldValByName("updateTime", new Date(), metaObject);
    }

}

mapper

@Mapper
public interface UserMapper extends BaseMapper<UserEntity> {

    UserEntity getUserById(@Param("id") String id);

    IPage<UserEntity> getUserPage(Page<?> page);

}

server

public interface UserServer extends IService<UserEntity> {


     UserEntity getUserById(String id);

     IPage<UserEntity> getUserPage(Page<UserEntity> page);
     
     void saveUser(UserEntity userEntity);
}

serverImpl

@Service
public class UserServerImpl extends ServiceImpl<UserMapper, UserEntity> implements UserServer {


    @Override
    public UserEntity getUserById(String id) {
        return baseMapper.getUserById(id);
    }

    @Override
    public IPage<UserEntity> getUserPage(Page<UserEntity> page) {
        return baseMapper.getUserPage(page);
    }


    @Transactional
    @Override
    public void saveUser(UserEntity userEntity) {
        save(userEntity);
    }

}
  • 在编写完实体类,以及实体类对应的mapper,server,serverImpl之后,就可以使用这个server对该实体所映射的表进行增删改查的操作,mybatisplus提供的操作类基本满足了所有单表的需求,但是多表查询依旧建议自己写个sql
  • 自己写原生sql有两种,一种是通过@Select,@Updata,@Delete,@Insert在mapper中写,要么就编写xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ladyishenlong.mybatisplus.mapper.UserMapper">


    <select id="getUserById" resultType="com.ladyishenlong.mybatisplus.model.UserEntity">
        select i.name from user i where i.id = #{id}
    </select>

    <select id="getUserPage" resultType="com.ladyishenlong.mybatisplus.model.UserEntity">
                select i.name from user i
    </select>

</mapper>

查询

    @Autowired
    private UserServer userServer;


    @GetMapping
    public Object test() {

        //分页查询
        IPage<UserEntity> page = new Page<>();
        page.setCurrent(0); //当前页
        page.setSize(1);    //每页条数
        userServer.page(page, new QueryWrapper<UserEntity>().lambda()
                .eq(UserEntity::getId, "666"));

        //xml分页查询
        Page<UserEntity> userEntityPage = new Page<>();
        userEntityPage.setCurrent(0);
        userEntityPage.setSize(1);
        IPage<UserEntity> userEntityIPage = userServer.getUserPage(userEntityPage);


        //xml语句
        userServer.getUserById("666");
        //自动生成查询
        userServer.list(new QueryWrapper<UserEntity>().lambda()
                .eq(UserEntity::getId, "666"));


        return userEntityIPage;

    }


  • 这里的分页也可用于xml中自己写的查询语句

插入

    @Autowired
    private UserServer userServer;


    @GetMapping("/test2")
    public Object test2() {

        //插入数据,可以添加事务
        UserEntity userEntity = new UserEntity();
        userEntity.setId("2500");
        userEntity.setName("黑魔导");
        userEntity.setPhone("2500");
        userEntity.setUsername("2500");
        userServer.saveUser(userEntity);
        
        return "";
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容

  • 前言 MyBatis是一个优秀的持久层ORM框架,它对jdbc的操作数据库的过程进行封装,使开发者只需要关注SQL...
    AI乔治阅读 636评论 0 5
  • MyBatis是一个优秀的持久层ORM框架,它对jdbc的操作数据库的过程进行封装,使开发者只需要关注SQL 本身...
    楼兰King阅读 668评论 0 5
  • 1.mybatis 中 #{}和 ${}的区别是什么? 1. #将传入的数据都当成一个字符串,会对自动传入的数据加...
    久伴_不离阅读 3,791评论 0 4
  • 今天抖音粉丝破千了。 意味着可以带货了。 从18年开始玩抖音,最早是在日本做了2个打鼓的视频放到账号上,直到今年2...
    云间大彭阅读 263评论 0 3
  • 原创/人杰地灵 季秋正阳 淡却幕夜清凉 游步丛楼林园 沐浴暖温阳光 足间落叶斑点 眸扫绿葱染黄 顿觉流年易逝 青丝...
    人杰地灵_2eeb阅读 1,007评论 8 46