@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); } }
只需要在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"})
註解就可以,註解指定掃描的包,就可以掃描到,更靈活方便。
以上是springBoot mybatis包掃描問題怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!