Spring Boot MyBatis注解:@MapperScan和@Mapper(转载)

https://www.cnblogs.com/JackpotHan/p/10286496.html

在之前的文章中,我们定义DemoMapper类,但是并没有在该类上定义类似@Service或者@Controller之类的注解,那么为什么可以被Spring管理呢?

下面是我整理的这两种方法的比较:

  使用@Mapper注解

  为了让DemoMapper能够让别的类进行引用,我们可以在DemMapper类上添加@Mapper注解:

@Mapper 
public interface DemoMapper { 
@Insert("insert into Demo(name) values(#{name})") @Options(keyProperty="id",keyColumn="id",useGeneratedKeys=true) 
public void save(Demo demo); } 

 

  直接在Mapper类上面添加注解@Mapper,但是这种方式要求每一个mapper类都需要添加此注解,麻烦。

  使用@MapperScan注解

  通过使用@MapperScan可以指定要扫描的Mapper类的包的路径,比如:

复制代码
@SpringBootApplication 
@MapperScan("com.kfit.*.mapper") 
public class App { 
  public static void main(String[] args) {
    SpringApplication.run(App.class, args);
  }
}
复制代码

  或者:

复制代码
@SpringBootApplication 
@MapperScan("com.kfit.mapper") 
public class App { 
    public static void main(String[] args) { 
        SpringApplication.run(App.class, args); } 
} 
复制代码

  可以根据包的结构指定不同的表达式。

  使用@MapperScan注解多个包

  可以使用如下的方式指定多个包: 

复制代码
@SpringBootApplication @MapperScan({"com.kfit.demo","com.kfit.user"}) 
public class App {
    public static void main(String[] args) { 
        SpringApplication.run(App.class, args); 
    } 
}     
复制代码

  如果mapper类没有在Spring Boot主程序可以扫描的包或者子包下面,可以使用如下方式进行配置:  

复制代码
@SpringBootApplication @MapperScan({"com.kfit.*.mapper","org.kfit.*.mapper"}) 
public class App { 
    public static void main(String[] args) { 
        SpringApplication.run(App.class, args); 
    } 
}    
复制代码

 

作者:JackpotHan
欢迎任何形式的转载,但请务必注明出处。
限于本人水平,如果文章和代码有表述不当之处,还请不吝赐教。

posted @ 2020-12-16 11:08  弓呆的胖次  阅读(678)  评论(0编辑  收藏  举报