Spring IOC 常用註解與使用

Aircoinst發表於2022-06-04

@Component

註解@component代表spring ioc 會把這個類掃描生成Bean例項

@Component
public class Role{
    @Value("1")
    private Long id;
    @Value("role_name_1")
    private String roleName;
    @Value("role_note_1")
    private String note;
    /***setter and getter****/
}

@Autowired

註解@Autowired代表在spring ioc 定位所有的Bean後,這個欄位需要按型別來進行注入。

@Component
public class RoleImpl_1 implements RoleServer{
    @Autowired
    private Role role = null;
    
    public .....
}

@Qualifier

​ 如果一個介面被兩次實現,則使用@Autowired註解來進行該介面注入會產生異常,因為@Autowired無法確定要使用的是哪一個實現類。可以使用@Qualifier註解來進行歧義消除。

@Component
public class RoleController{
    @Autowired
    @Qualifier("roleImple_2")
    private RoleServer server = null;
    
    public .....
}

@Bean

​ 在註解都都是通過@component來進行裝配Bean,但是@Component只能註解在類上,無法註解到方法上。而註解@Bean可以註解到方法上

@Bean(name = "dataSource")
public DataSource getDataSource(){
    Properties props = new Properties();
    props.setProperty("driver","com.mysql.cj.jdbc.Driver");
    props.setProperty("url","jdbc:mysql://localhost:3306/db");
    ...
    try{
        dataSource = BasicDataSourceFactory.createDataSource(props);
    }catch(Execption e){
        e.printStackTrace();
    }
    return dataSource;
}
@Component
public class RoleController{
    @Autowired(name = "dataSource")
    private DataSource dataSource = null;
    
    public .....
}

@ImportResource

​ 如果我們將DataSource使用xml配置檔案來進行配置,我們就無法使用註解@Bean來進行裝配。這時註解@ImportResource可以進行混合裝配(將第三方的xml引入進來進行裝配)。

<!--dbSource.xml-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
	<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
	<property name="url" value="jdbc:mysql://localhost:3306/db"/>
    .......
</bean>
@ComponentScan(basePackages={"com.test"})
@ImportResource({"classpath:dbSource.xml"})  //將dbSource.xml配置檔案裝配到Ioc中來
public class ApplicationConfig{
}
@Component
public class RoleController{
    @Autowired
    private DataSource dataSource = null;
  
    public .....
}

如果有多個xml檔案,我們都想引用進來,可以在dbSource.xml配置檔案中使用import元素來載入它

<!--spring-dataSource.xml-->
...........
<!--dbSource.xml-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
	<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
	<property name="url" value="jdbc:mysql://localhost:3306/db"/>
    .......
</bean>
<import resourse="spring-dataSource.xml"/>

@Profile

​ 可以解決不同環境的切換需求,例如開發環境和測試環境不同,我們來看程式碼操作。

@Component
public class ProfileDataSource{
    //開發環境
    @Bean(name = "devDataSource")
    @Profile("dev")
    public DataSource getDevDataSource(){
        ......
    }
    
    //測試環境
    @Bean(name = "testDataSource")
    @Profile("test")
    public DataSource getTestDataSource(){
        ......
    }
}

當啟動Java配置Profile時,可以發現兩個Bean並不會載入到IOC容器中,需要自行啟用Profie。我們可以使用JVM啟動目錄或在整合測試環境中使用@ActiveProfiles進行定義

//使用@ActiveProfiles啟用Profie
@RunWith(SpringJunit4ClassRunner.class)
@ContextConfiguration(classes=ProfileTest.class)
@ActiveProfiles("dev")  //啟用開發環境的Profile
public class ProfileTest{
    
}
//使用JVM引數啟用Profie
JAVA_OPTS="-Dspring.profiles.active=test"

@PropertySource

可以使用註解@PropertySource來載入屬性檔案(properties)。

# dataSource.properties
jdbc.database.driver=com.mysql.cj.jdbc.Driver
jdbc.database.url=jdbc:mysql://localhost:3306/db
.......
@Configuration
@PropertySource(value = {"classpath:dataSource.properties"},{ignoreResourceNotFound=true})
public class ApplicationConfig{
    
}

ignoreResourceNotFound=true,如果找不到該屬性檔案則忽略它。

相關文章