Spring Boot使用Mybatis|tk.mybatis

一、引入依赖


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    2.1.2


    tk.mybatis
    mapper-spring-boot-starter
    2.1.5

启动类上加入:

注意使用了tk.mybatis,这里的注解就不能使用MyBatis的了。

import tk.mybatis.spring.annotation.MapperScan;

@MapperScan("com.peace.web.dao.mapper")

二、mapper xml的位置

mapper xml文件的位置有2中方式处理,

1、直接将xml文件放在Java src下,和mapper 接口一个文件夹下,这是mybatis默认扫描的位置,但是maven打包时会过滤掉非Java文件,所以如果放在这个位置需要修改maven打包配置:


    
        
            src/main/java
            
                **/*.xml
            
        
        
            src/main/resources
        
    

2、将xml文件放在resource目录下, 但是这样mybatis不知道去那里找,需要在配置文件中配置:

mybatis:
  mapper-locations: classpath:mapper/*.xml

所以无论那种方式,都需要修改配置。

你可能感兴趣的:(Spring,SpringBoot,SpringCloud)