SpringBoot 自動掃描第三方包及spring.factories失效的問題

迷路的圓發表於2023-05-06

為什麼會找不到

Spring 依賴注入 就是要讓spring找到要注入的類 並且識別到了 @Component、@Service 等註解。

1. 當在開發的第三方包裡寫明瞭 @Component、@Service 等等

2. 引入了包,不論第三方庫的引入,還是本地jar。總之是要引入到工程的

這時候還加入不到 IOC 容器,那就說明SpringBoot工程沒有掃描到這些類。

解決方法

1. componentScan 或者SpringBootApplication(scanBasePackages= )

@SpringBootApplication
@ComponentScan(basePackages = {"com.example.gradlespringbootdemo","com.example.gradlespringboottest"})
public class GradleSpringbootTestApplication {

    public static void main(String[] args) {
        SpringApplication.run(GradleSpringbootTestApplication.class, args);
    }

SpringBootApplication 是個三合一的註解,其中就包含了ComponentScan 。本身是要預設掃描範圍的,手動加入ComponentScan後,預設就失效了。要手動加回來

2. 寫自動配置類

這種方法的原理與上一個其實是一樣的,實際作用還是在目標上加入了componentScan 的掃描註解

3. spring.factories檔案

SpringBoot 自動掃描第三方包及spring.factories失效的問題

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
 com.example.gradlespringbootdemo.service.TestService\
 AbcClass\
 DefClass

當開發第三方包時,可以使用這種方法。這樣使用這個包的springboot工程就可以自動掃描到了。其實就時springboot啟動時會掃描依賴jar包下的這個路徑的spring.factories檔案。這個檔案可以寫很多配置,例如Listener等。

如上程式碼將需要被掃描的類都寫進去。

spring.factories 失效

這是版本問題,新的版本不再支援spring.factories檔案了。改為上圖中一長串那樣的寫法 即 META-INF\spring\org.springframework.boot.autoconfigure.EnableAutoConfiguration.imports這樣,就是把原來的配置單獨形成檔案,直接把要掃描的類寫進這個檔案就可以了,每行寫一個,像這樣

SpringBoot 自動掃描第三方包及spring.factories失效的問題

相關文章