我正在使用Spring,並且我有一長串子包,我必須在<context:component-scan>
標記中逐一指定它們嗎?在<context:component-scan>中包含子包的語法是什麼?
<context:component-scan base-package="com.fooapp.mainpackage,
com.fooapp.mainpackage.subpackage1,
com.fooapp.mainpackage.subpackage2,
com.fooapp.mainpackage.subpackage3" />
非常真實,但如果您想基於圖層進行區分,則您始終可以對其他圖層執行'等操作一個想法 –
Rachel
基於這個文檔[Spring Beans and dependency injection](https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-spring-beans-and-dependency-injection .html),因此我們需要將我們的代碼(我們希望將它們注入到IoC容器中)放入根包中。 – Kramer