您好,登錄后才能下訂單哦!
這篇文章主要介紹了springBoot mybatis包掃描問(wèn)題怎么解決的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇springBoot mybatis包掃描問(wèn)題怎么解決文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。
@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啟動(dòng)類(lèi)上加上注解,并指定jar包中接口文件包路徑即可
@MapperScan(basePackages = "com.xx.**.dao")
如果使用@Controller和@EnableAutoConfiguration 注解還應(yīng)該再加上一個(gè)注解:@ComponentScan 就可以了。
@Controller和@EnableAutoConfiguration沒(méi)有掃描注解的功能,而@ComponentScan是
springboot專(zhuān)門(mén)用來(lái)掃描@Component, @Service, @Repository, @Controller等注解的注解
使用springboot啟動(dòng)類(lèi)配置掃描的兩種注解配置方式:
1、@Controller
@EnableAutoConfiguration @ComponentScan
2、@SpringBootApplication
@SpringBootApplication注解等價(jià)于@Configuration, @EnableAutoConfiguration and @ComponentScan
另外application.java(啟動(dòng)類(lèi))也應(yīng)該按照官方的建議放在root目錄下,這樣才能掃描到Service和dao,不然還會(huì)引起,掃描不到注解的問(wèn)題。
--- 更新日期:2018-10-14 ---
最近用了最新的springboot 2.0.5.RELEASE 版本 多了一種新的掃描注解,新版的springboot application可以放在任意位置,只要加上
@ComponentScan(basePackages = {"com.oskyhang", "com.frames"})
注解就可以,注解指定掃描的包,就可以?huà)呙璧?,更靈活方便。
關(guān)于“springBoot mybatis包掃描問(wèn)題怎么解決”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“springBoot mybatis包掃描問(wèn)題怎么解決”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。