欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

springboot 整合fluent mybatis的过程,看这篇够了

时间:2022-11-06 09:20:49|栏目:JAVA代码|点击:

1.导入pom依赖

<!--        mybatis-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.1</version>
        </dependency>
 
        <!--mysql依赖-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-dbcp2</artifactId>
            <version>2.5.0</version>
        </dependency>
<!-- 引入fluent-mybatis 运行依赖包, scope为compile -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis</artifactId>
            <version>1.6.8</version>
        </dependency>
        <!-- 引入fluent-mybatis-processor, scope设置为provider 编译需要,运行时不需要 -->
        <dependency>
            <groupId>com.github.atool</groupId>
            <artifactId>fluent-mybatis-processor</artifactId>
            <version>1.6.8</version>
        </dependency>

2.配置数据库连接

spring.datasource.url= jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=root

3.创建数据库表

CREATE TABLE `student` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) DEFAULT NULL,
  `age` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='学生表';

4.创建Student实体类,

        ①实体类添加 @FluentMybatis

        ②实现 IEntity 接口

@FluentMybatis
@Data
@NoArgsConstructor
public class Student implements IEntity {
    private Long id;
    private String name;
    private Integer age;
}

5.重新构建项目

构建完成后,target目录下就会新建几个文件夹

 6. 测试

@Autowired
    private StudentMapper studentMapper; // target目录下
    @RequestMapping("insert")
    public void insert(){
        Student student = new Student();
        student.setName("dl");
        student.setAge(25);
        studentMapper.insert(student);
    }

数据库已插入

 ************************************

如果出现Mapper文件找不到路径的异常,很可能是在之前idea中将target文件隐藏了,只需

File --> setting -->  File Types   将忽视的target文件删掉就可以了

上一篇:Java内存模型原子性原理及实例解析

栏    目:JAVA代码

下一篇:spring boot集成p6spy的最佳实践

本文标题:springboot 整合fluent mybatis的过程,看这篇够了

本文地址:http://www.codeinn.net/misctech/218278.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有