Aware接口到底是什么东西?
其实总结起来就是Spring提供给我们的可以在类的内部获取Spring提供的资源的接口。
首先介绍几个Spring所提供的Aware接口:
Tables | Are |
---|---|
ApplicationContextAware | 当前的application context从而调用容器的服务 |
BeanNameAware | 获得到容器中Bean的名称 |
BeanFactoryAware | 获得当前bean Factory,从而调用容器的服务 |
MessageSourceAware | 得到message source从而得到文本信息 |
ApplicationEventPublisherAware | 应用时间发布器,用于发布事件 |
ResourceLoaderAware | 获取资源加载器,可以获得外部资源文件 |
Spring Aware的目的是为了让Bean获得Spring容器的服务。因为ApplicationContext接口集成了MessageSource接口、ApplicationEventPublisher接口和ResourceLoader接口,因此当Bean继承自ApplicationContextAware的时候就可以得到Spring容器的所有服务。
说的再多不如例子:
首先创建一个类TestApplicationContextAware实现ApplicationContextAware接口:
public class TestApplicationContextAware implements ApplicationContextAware{
public void setApplicationContext(ApplicationContext arg0) throws BeansException {
// TODO Auto-generated method stub
System.out.println(arg0);
}
}
我们实现接口的方法,并在方法里打印ApplicationContext,然后在配置文件中加入这个类的bean:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="testApplicationContextAware" class="com.mss.test.TestApplicationContextAware"></bean>
</beans>
最后在测试方法中调用:
@RunWith(BlockJUnit4ClassRunner.class)
public class TestOneInterface extends UnitTestBase{
public TestOneInterface() {
super("classpath*:spring-ioc.xml");
}
@Test
public void testApplicationContextAware() {
super.getBean("testApplicationContextAware");
}
}
看一下打印结果:
org.springframework.context.support.ClassPathXmlApplicationContext@626b2d4a: startup date [Fri Dec 22 11:38:05 CST 2017]; root of context hierarchy
已经成功获取,我们在来实现一下BeanNameAware接口:
public class TestApplicationContextAware implements ApplicationContextAware,BeanNameAware{
public void setApplicationContext(ApplicationContext arg0) throws BeansException {
// TODO Auto-generated method stub
System.out.println(arg0);
}
public void setBeanName(String arg0) {
// TODO Auto-generated method stub
System.out.println(arg0);
}
}
运行之后的打印结果:
testApplicationContextAware
org.springframework.context.support.ClassPathXmlApplicationContext@626b2d4a: startup date [Fri Dec 22 11:49:26 CST 2017]; root of context hierarchy
到这里Aware接口就会明了了,其实没有什么难得,关于其他的接口大家可以自行百度或者查阅官方文档,授人鱼不如授之以渔。