Spring 注解
1、原始注解
注解 | 说明 |
---|---|
@Component | 使用在类上用于实例化Bean |
@Controller | 使用在web层类上用于实例化Bean |
@Service | 使用在service层类上用于实例化Bean |
@Repository | 使用在dao层类上用于实例化Bean |
@Autowired | 使用在字段上用于根据类型依赖注入 |
@Qualifier | 结合@Autowired一起使用用于根据名称进行依赖注入 |
@Resource | 相当于@Autowired+ @Qualifier,按照名称进行注入 |
@Value | 注入普通属性 |
@Scope | 标注Bean的作用范围 |
@PostConstruct | 使用在方法上标注该方法是Bean的初始化方法 |
@PreDestroy | 使用在方法上标注该方法是Bean的销毁方法 |
(1)@Component 相当于Spring的xml文件中的配置
(2)@Controller、@Service、@Repository这三个只是为了区分controller层、service层和dao层,其作用和功能还是和@Component一样。
(3)@Autowired注解+@Qualifier实现了xml文件中的依赖注入,如下图。
同时上述@Autowired注解+@Qualifier可以用一个注解替换,这个注解就是@Resource,使用方法@Resource(“”),上面图片里的就可以替换成@Resource(“userDao”)。
注意:使用注解进行开发时,需要在 S p r i n g 的 x m l 中配置组件扫描,作用是指定哪个包及其子包下的 B e a n 需要进行扫描以便识别使用注解配置的类、字段和方法。 \color{red}注意: 使用注解进行开发时,需要在Spring的xml中配置组件扫描,作用是指定哪个包及其子包下的Bean 需要进行扫描以便识别使用注解配置的类、字段和方法。 注意:使用注解进行开发时,需要在Spring的xml中配置组件扫描,作用是指定哪个包及其子包下的Bean需要进行扫描以便识别使用注解配置的类、字段和方法。
<context:component-scan base-package="你的包路径"></context:component-scan>
2、新注解
注解 | 说明 |
---|---|
@Configuration | 用于指定当前类是一个 Spring 配置类,当创建容器时会从该类上加载注解 |
@ComponentScan | 用于指定 Spring 在初始化容器时要扫描的包。 作用和在 Spring 的 xml 配置文件中的 <context:component-scan base-package=“包的路径”/>一样 |
@Bean | 使用在方法上,标注将该方法的返回值存储到 Spring 容器中 |
@PropertySource | 用于加载.properties 文件中的配置 |
@Import | 用于导入其他配置类 |
@Configuration 注解是将原本需要在Spring的xml创建的容器放到一个类中创建。
@Bean 使用在方法上,标注将该方法的返回值存储到 Spring 容器中,如下图的DataSourceConfiguration类,他的getDataSource()方法有一个DataSoure返回值,bean注解就可以获取到方法执行的返回值,将获取的返回值命名@Bean(“dataSoure”)
@PropertySource 用于加载.properties 文件中的配置。一般我们将数据库的driver、url、name、password放入jdbc.properties,通过这个注解我们不用在xml文件配置数据库连接,可以在类中配置。
@Configuration
@ComponentScan("包的路径")
//<context:component-scan base-package="包的路径"/>
@Import({DataSourceConfiguration.class})
public class SpringConfiguration {
}
@PropertySource("classpath:jdbc.properties")
public class DataSourceConfiguration {
@Value("${jdbc.driver}")
private String driver;
@Value("${jdbc.url}")
private String url;
@Value("${jdbc.username}")
private String username;
@Value("${jdbc.password}")
private String password;
@Bean(name="dataSource")
public DataSource getDataSource() throws PropertyVetoException { ComboPooledDataSource dataSource = new ComboPooledDataSource(); dataSource.setDriverClass(driver);
dataSource.setJdbcUrl(url);
dataSource.setUser(username); dataSource.setPassword(password); return dataSource;
}
}
在测试类中我可以通过如下方法获取到数据库的连接
@Test
public void testAnnoConfiguration() throws Exception {
ApplicationContext applicationContext = new
AnnotationConfigApplicationContext(SpringConfiguration.class);
DataSource dataSource = (DataSource) applicationContext.getBean("dataSource");
Connection connection = dataSource.getConnection();
System.out.println(connection);
}
3. Spring集成Junit
在测试类中,每个测试方法都有以下两行代码:ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
IAccountService as = ac.getBean("accountService",IAccountService.class);
这两行代码的作用是获取容器,如果不写的话,直接会提示空指针异常。所以又不能轻易删掉。
如何解决这个问题?
让SpringJunit负责创建Spring容器,但是需要将配置文件的名称告诉它
Spring 集成Junit步骤
① 导入spring集成Junit的坐标
<!--此处需要注意的是,spring5 及以上版本要求 junit 的版本必须是 4.12 及以上-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.2.10.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
② 使用@Runwith注解替换原来的运行期
@RunWith(SpringJUnit4ClassRunner.class)
public class SpringJunitTest {
}
③ 使用@ContextConfiguration指定配置文件或配置类
@RunWith(SpringJUnit4ClassRunner.class)
//加载spring核心配置文件
//@ContextConfiguration(value = {"classpath:applicationContext.xml"})
//加载spring核心配置类
@ContextConfiguration(classes = {SpringConfiguration.class})
public class SpringJunitTest {
}
④ 使用@Autowired注入需要测试的对象
⑤ 创建测试方法进行测试
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {SpringConfiguration.class})
public class SpringJunitTest {
@Autowired
private UserService userService;
@Test
public void testUserService(){
userService.save();
}
}