1、概述
这部分的注解,是使用后完全可以替换 XML 核心配置文件的注解。之前的讲述的注解中(https://www.jianshu.com/p/e4c719f34a5b 和 https://www.jianshu.com/p/1d7311fa8e40),仍然使用 XML 核心配置文件
src/main/resources/applicationContext.xml
,并在配置文件中配置开启注解扫描这一关键步骤。虽然说,这些注解能够彻底不需要 XML 配置文件。但是,一切根据实际情况(团队内的开发规范等)。
2、注解
3、@Configuration
- 一旦某个类使用了该注解,相当于这个类会有和之前的
applicationContext.xml
有相同的作用。
import org.springframework.context.annotation.Configuration;
@Configuration
public class SpringConfig {
}
4、@Bean
Spring 框架中的 XML 核心配置文件的一个重要作用是,指定哪些类的对象交由 Spring 容器(IoC 容器)进行管理。在
@Configuration
的类中,使用@Bean
注解去实现 XML 中的<bean ······/>
的作用。规则是:在使用
@Configuration
注解的类中,一个方法上使用@Bean
注解,其返回值交由 Spring 容器管理。
import com.yscyber.spring.four.repo.OrderRepo;
import com.yscyber.spring.four.repo.impl.OrderRepoImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SpringConfig {
@Bean
OrderRepo orderRepo() {
return new OrderRepoImpl();
}
}
此时,这个返回值就交由 Spring 容器管理,默认 id 为该方法名(因为没使用@Bean
注解中的属性)。
-
@Bean
注解中可以指定 id
import com.yscyber.spring.four.repo.OrderRepo;
import com.yscyber.spring.four.repo.impl.OrderRepoImpl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SpringConfig {
@Bean("orderRepo")
OrderRepo orderRepo() {
return new OrderRepoImpl();
}
}
- 获取 Spring 容器(IoC 容器)时,使用的类是
org.springframework.context.annotation.AnnotationConfigApplicationContext
,不同于 XML 配置文件org.springframework.context.support.ClassPathXmlApplicationContext
@Test
public void test1() {
ApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
OrderRepo orderRepo = (OrderRepo) applicationContext.getBean("orderRepo");
orderRepo.aMethod();
}
5、@ComponentScan
- 开启注解扫描,相当于 XML 配置文件中的
<context:component-scan base-package="······"/>
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan(basePackages = {"······"})
public class SpringConfig {
}
6、@PropertySource
- 加载
.properties
文件,相当于 XML 配置文件中的<context:property-placeholder location="······"/>
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
@Configuration
@PropertySource(value = {"classpath:jdbc.properties"})
public class SpringConfig {
}
7、@Import
- 导入其他配置类,实现类似于“配置文件模块化”,注意该注解仅限配置类。
import org.springframework.context.annotation.Configuration;
@Configuration
public class DataSourceConfig {
}
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
@Configuration
@Import({DataSourceConfig.class})
public class SpringConfig {
}
8、@ImportResource
- 导入配置文件
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
@Configuration
@ImportResource(locations = {"classpath:applicationContext.xml"})
public class SpringConfig {
}
9、配置类中的方法的参数可以进行依赖注入
- 注入时,对象可以来自同一配置类(同一配置类下的一个方法的返回值),也可以来自另一个配置类,前提是需
@Import
引入。