这个接口有什么用?
ApplicationContextAware这个接口本身并不具备什么功能,一般用于子类继承后,子类重写接口的setApplicationContext(ApplicationContext context)
方法,当在Spring初始化子类实例的时候,会调用该方法,这个方法将Spring上下文作为参数传入,可以方便地获取相应的资源,包括获取整个Spring容器(ApplicationContext)。
注意:一定要让继承ApplicationContextAware接口的bean被Spring上下文管理,在application.xml文件中定义对应的bean标签,或者使用@Component等注解。
使用示例
1 |
|
测试获取容器中的bean:1
2
3
4
5
public void testGetBean() {
DefaultNotifyStrategy bean = SpringContextUtil.getBean(DefaultNotifyStrategy.class);
System.out.println(bean);
}
输出:1
com.lzumetal.springboot.spring.service.DefaultNotifyStrategy@eb7b5e
使用示例扩展:获取指定注解的资源
1.在这个例子中,我们自定义了一个注解:
1 | package com.lzumetal.ssm.springinterface.annotation; |
应为这个注解是包含了Spring的@Service
注解,所以标注了这个注解的类也将被spring的IOC容器管理。
2.定义一个借口和实现类1
2
3
4
5package com.lzumetal.ssm.springinterface.service;
public interface RpcDemoService {
}
1 | package com.lzumetal.ssm.springinterface.service; |
3.spring的配置文件1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.lzumetal.ssm.springinterface">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
</beans>
4.定义ApplicationContextAware的子类,在这个子类中,我们就可以获取到标注了@Service
的所有bean。
1 | package com.lzumetal.ssm.springinterface; |
5.简单测试1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27package com.lzumetal.ssm.springinterface.test;
import com.lzumetal.ssm.springinterface.RpcServer;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import java.util.Map;
(SpringJUnit4ClassRunner.class)
"classpath:spring-context.xml"}) (locations = {
public class MainTest {
private RpcServer rpcServer;
public void testApplicationContextAware() {
Map<String, Object> handlerMap = rpcServer.getHandlerMap();
for (Map.Entry<String, Object> entry : handlerMap.entrySet()) {
System.out.println(entry.getKey() + "====>" + entry.getValue());
}
}
}
输出:1
com.lzumetal.ssm.springinterface.service.RpcDemoService====>com.lzumetal.ssm.springinterface.service.RpcDemoServiceImpl@5cee5251
后话
Spring中还有一个接口InitializingBean,它的子类会重写afterPropertiesSet()
方法,当Spring初始化子类bean的时候,当属性被初始化后便会调用这个方法,和ApplicationContextAware相比是这个重写的方法是无参的。