@Component:
聲明類為component, 并告知Spring要為這個類創(chuàng)建bean。
將bean標識為標識名:
@Component("標識名")
@Named("標識名"):
Java DI規(guī)范提供的annotation陆盘,為bean設(shè)置id镀琉。
Spring 支持將@Named作為@Component注解的替代方案。大多數(shù)場景可以互相替換另萤。
@ComponentScan:
沒有其他配置,默認掃描與配置類相同的包,查找本包及子包的@Component注解類不铆。
指定不同基礎(chǔ)包:
@ComponentScan("標識名")
設(shè)置多個基礎(chǔ)包:
- 使用String表示蝌焚,(not type-safe)
@ComponentScan(basePackages={"標識名","標識名"})
2)指定為保重所包含的類或接口:
@ComponentScan(basePackages={類名.class,類名.class})
@Autowired:
1)實例化,傳入bean
2)自動裝配Setter等其他方法誓斥,如
public void setXX(XX xx){
this.xx = xx;
}```
如果沒有匹配的bean只洒,在應(yīng)用上下文創(chuàng)建的時候Spring會拋出異常。避免異忱涂樱可將@Autowired的required屬性設(shè)置為false:
``@Autowired(required=false)``
如果代碼中沒有進行null檢查毕谴,這個處于未裝配狀態(tài)的屬性有可能出現(xiàn)NullPointerException。
@Autowired可替換為:@Inject(同@Named,來源于Java依賴注入規(guī)范)
######@Configuration:
表明此類為配置類距芬,該類應(yīng)該包含在Spring應(yīng)用上下文中如何創(chuàng)建bean的細節(jié)涝开。
######@Bean:
使用JavaConfig裝配時,聲明bean:
@Bean
public xx xX(){
return new xX();
}
如果想將bean設(shè)置為不同的名字框仔,可以使用:
@Bean(name="yY")
public xx xX(){
return new xX();
}
在JavaConfig中裝配聲明依賴于某類的bean:
@Bean
public zz zZ(){
return new zz(xX());
}
######@Import:
組合兩個類
1)``@Import(A.class)``于Bclass
2)``@Import({A.class,B.class})``于Cclass
######@ImportResource:
使Spring同時加載某類和其他基于Java的配置
``@ImportResource("classpath:xx-config.xml")
######@Profile:
指定某個bean屬于哪一個profile忠寻,為解決環(huán)境相關(guān)的問題。比如:
@Configuration
@profile("dev")
public class DevelopmentProfileConfig{
@Bean(destroyMethod="shutdown")
public DataSource dataSource(){
return new EmbeddedDatabaseBuilder()
.setType(EmbeddedDatabaseType.H2)
.addScript("classpath:schema.sql")
.addScript("classpath:test-data.sql")
.build();
}
}
此例中代碼會告訴Spring這個配置類中的bean只有在`dev`profile激活時才會創(chuàng)建存和。
@profile 在Spring 3.1中啟用奕剃,且只能在類級別上使用;在3.1開始捐腿,在方法級別上也可以使用纵朋。
沒有指定profile的bean始終會被創(chuàng)建。
在Spring 4 中 @Profile的實現(xiàn):
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
@Conditional(ProfileCondition.class)
public @interface Profile{
String[] value();
}
######@Conditional:
Spring 4引入的用到帶有`@bean`注解方法上茄袖,判斷條件結(jié)果為`true`就創(chuàng)建這個bean的annotation操软。用于希望一個或多個bean只有在應(yīng)用的類路徑下包含特定庫時才創(chuàng)建,或只有某個特定環(huán)境變量設(shè)置后才會創(chuàng)建某個bean:
``@Bean
@Conditional(XX.class)``
@Conditional將通過Condition接口進行條件對比:
public interface Condition{
boolean matches(ConditionContext ctxt,
AnnotatedTypeMetadata metadata);
}
實現(xiàn)類:
public class MagicExistsCondition implements Condition{
public boolean matches(
ConditionContext ctxt,AnnotatedTypeMetadata metadata){
Environment env = ctxt.getEnvironment();
return env.containsProperty("magic"); //檢查magic屬性
}
}
######@Primary:
用于消除自動裝配的歧義性,同一接口下不能有兩個或以上的primary:
1)與@Component連用:
@Component
@Primary
public class BB implements AA{...}
2)與Bean連用:
@Bean
@Primary
public AA BB(){
return new BB;
}
@Qualifier:
使用限定符消除自動裝配的歧義性宪祥,可以與'@Autowired'和`@Inject`協(xié)同使用:
@Autowired
@Qualifier("自定義限定符名")
public void setAA(AA aa){
this.aa = aa;
}
@Scope:
用于選擇聂薪。指定bean的作用域,聲明原型bean:
與`@Component`:
@Component
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public class Notepad{ ... }
使用ConfigurableBeanFactory類的SCOPE_PROTOTYPE常量設(shè)置了原型作用域蝗羊。
與`@Bean`指定作用域:
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public Notepad notepad(){
return new Notepad();
}
這樣每次操作都能得到自己的Notepad實例藏澳。
@Value
用于在依賴于組件掃毛和自動裝配來創(chuàng)建和初始化應(yīng)用組件的情況,與@Autowired非常相似:
public Book{
@Value("${book.title}") String title,
@Value("${book.artist}") String artist){
this.title = title;
this.artist = artist;
}
}