springBoot mybatis 包掃描實例

springBoot mybatis 包掃描

@MapperScan(basePackages = {"com.zscat.*.dao","com.zscat.*.*.dao"})
@EnableTransactionManagement(proxyTargetClass = true)
@SpringBootApplication
@MapperScan(basePackages = {"com.zscat.*.dao","com.zscat.*.*.dao"})
public class   ShopServiceApplication {
    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(ShopServiceApplication.class);
        application.run(args);
    }
}

springBoot 掃描不到 mybatis 接口包

隻需要在spring boot啟動類上加上註解,並指定jar包中接口文件包路徑即可

@MapperScan(basePackages = "com.xx.**.dao")

如果使用@Controller和@EnableAutoConfiguration 註解還應該再加上一個註解:@ComponentScan 就可以瞭。

@Controller和@EnableAutoConfiguration沒有掃描註解的功能,而@ComponentScan是

springboot專門用來掃描@Component, @Service, @Repository, @Controller等註解的註解

總結:

使用springboot啟動類配置掃描的兩種註解配置方式:

1、@Controller

   @EnableAutoConfiguration
   @ComponentScan

2、@SpringBootApplication

@SpringBootApplication註解等價於@Configuration, @EnableAutoConfiguration and @ComponentScan

另外application.java(啟動類)也應該按照官方的建議放在root目錄下,這樣才能掃描到Service和dao,不然還會引起,掃描不到註解的問題。

— 更新日期:2018-10-14 —

最近用瞭最新的springboot 2.0.5.RELEASE 版本 多瞭一種新的掃描註解,新版的springboot application可以放在任意位置,隻要加上

@ComponentScan(basePackages = {"com.oskyhang", "com.frames"})

註解就可以,註解指定掃描的包,就可以掃描到,更靈活方便。

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: