您好,登錄后才能下訂單哦!
ImportSelector:返回需要導入的組件的全類名數組
創建一個實現了ImportSelector接口的類,然后讓入Import中。ImportSelector的實現類包含了所有需要導入到容器中的組件。
public class StuConfigurationImportSerlect implements ImportSelector {
@Override
public String[] selectImports(AnnotationMetadata importingClassMetadata) {
//編程的方式增加了Bean的彈性邏輯性
//字符串數組里面的類會被注冊到容器
return new String[]{"com.example.demo8.entity.Stu"};
}
}
@Configuration
@Import(StuConfigurationImportSerlect.class)
public class StuConfiguration {
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。