SpringBoot整合Mybatis

xml方式整合Mybatis

xml方式在编写复杂SQL时,更适合

1.导入依赖



    mysql
    mysql-connector-java




    com.alibaba
    druid-spring-boot-starter
    1.1.10




    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    1.3.2

2.编写配置文件

//编写实体类
@Data
public class User implements Serializable {
    private Integer id;
    private String name;
    private Integer age;
    private String gender;
}

3.准备Mybatis

           1.接口SpringBoot整合Mybatis_第1张图片

                 

       2. 在启动类中添加直接,扫描Mapper接口所在的包

SpringBoot整合Mybatis_第2张图片

     3. 准备映射文件

SpringBoot整合Mybatis_第3张图片

 






    

     4. yml文件

server:
  port: 8080



mybatis:
  mapper-locations: classpath:mappers/*.xml
 # 配置别名扫描的包
  type-aliases-package: com.qianfeng.day1124.entity



spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql:///crm?serverTimezone=Asia/Shanghai
    username: root
    password: 123456

SpringBoot整合Mybatis_第4张图片

测试启动类测试

SpringBoot整合Mybatis_第5张图片

 

 

注解方式整合Mybatis

注解方式在编写配置简单,简单SQL推荐使用

创建的Mapper接口SpringBoot整合Mybatis_第6张图片

 

添加Mybatis注解

针对增删改查:@Insert,@Delete,@Update,@Select

还是需要在启动类中添加@MapperScan注解

 

SpringBoot整合Mybatis_第7张图片

添加配置

// yml文件
logging:
  level:
    com.qf.firstspringboot.mapper: DEBUG

 application.yml

server:
  port: 8080



mybatis:
  mapper-locations: classpath:mappers/*.xml
  type-aliases-package: com.qianfeng.day1124.entity



spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql:///crm?serverTimezone=Asia/Shanghai
    username: root
    password: 123456
    type: com.alibaba.druid.pool.DruidDataSource
  thymeleaf:
    mode: HTML   #thymeleaf 的模板模型
    cache: false  #不适用缓存
    encoding: UTF-8  #编码
    prefix: classpath:/templates/  #前缀
    suffix: .html         #后面



logging:
  level:
    com.qianfeng.day1124.dao: debug

SpringBoot整合Mybatis_第8张图片

 

 

你可能感兴趣的:(mybatis,spring,boot,java)