Spring基础(十):高级话题:Spring Aware

1.概念

Spring依赖注入的最大亮点是所有的Bean对Spring容器的存在是没有意识的。即换成别的容器也行。

但是如果需要使用Spring容器本身的功能资源,就需要让Bean能意识到Spring容器的存在。Spring Aware的目的是让Bean获得Spring容器的服务

 

2.使用

因为ApplicationContext接口继承了MessageSource接口、ApplicationEventPublisher接口和ResourceLoader接口,所以Bean继承ApplicationContextAware可以获得Spring容器的所有服务。

Spring提供的接口:

(1)BeanNameAware:获取容器中Bean的名称

(2)BeanFactoryAware:获取当前bean factory,这样可以调用容器的服务

(3)ApplicationContextAware:当前的applicationContext,这样可以调用容器的服务

(4)MessageSourceAware:获取MessageSource,可以获得文本信息

(5)ApplicationEventPublisherAware:事件发布器,可以发布事件

(6)ResourceLoader:获取资源加载器

 

3.示例

创建一个test.txt,内容随便给

package highlight_spring4.chi3.aware;

import java.io.IOException;

import org.apache.commons.io.IOUtils;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.stereotype.Service;

@Service
public class AwareService implements BeanNameAware,ResourceLoaderAware {

	private String beanName;
	private ResourceLoader loader;
	
	public void setResourceLoader(ResourceLoader resourceLoader) {
		this.loader = resourceLoader;
	}

	public void setBeanName(String name) {
		this.beanName = name;
	}
	
	public void outputResult(){
		try {
			System.out.println("Bean的名称:"+beanName);
			Resource resource = loader.getResource("classpath:highlight_spring4/chi3/aware/test.txt");
			System.out.println("ResourceLoader加载的文件内容为:"+IOUtils.toString(resource.getInputStream()));
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}
package highlight_spring4.chi3.aware;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
 * 配置类
 */
@Configuration
@ComponentScan("highlight_spring4.chi3.aware")
public class AwareConfig {
}
package highlight_spring4.chi3.aware;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

/**
 * 运行类
 */
public class Main {
	public static void main(String[] args) {
		AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AwareConfig.class);
		AwareService awareService = context.getBean(AwareService.class);
		awareService.outputResult();
		context.close();
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鹏哥哥啊Aaaa

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值