在监听器中使用@Autowried调用service层包null的解决方案

公司做热备份时,需要检测当前的硬件和卫星是否为告警状态,检测到后就新建一个标识(空文件)。

刚开始,我在监听器中调用server层后来获取需要的数据,发现始终是为空。于是参考了网站相关的资料发现是因为监听器是由servlet调用的,而@Autowried是由spring来进行管理的,结果当然为空咯。总结的以下几个解决方案:

【1】使用

WebApplicationContextUtils.getWebApplicationContext(sce.getServletContext()).getBean(HeartbeatDataService.class);

【2】使用@PostConstruct;

【3】继承InitializingBean接口:如下

public class CheckAlarm implements InitializingBean{

	protected final Log logger = LogFactory.getLog(getClass());
	
	@Resource
	private HeartbeatDataService heartbeatDataService;
		
	@Override
	public void afterPropertiesSet() throws Exception {

		new Thread(new Runnable() {
			
			@Override
			public void run() {
				//实时检测当前是否为告警状态
				while(true){
					String dirpath = "/home/run";
					String downPath = dirpath+"/down";
					File dir = new File(dirpath);
					File down = new File(downPath);
					//获取心跳包信息
					HeartbeatData heartbeatData = heartbeatDataService.getHeartbeatData();
					//检测是否为空
					if(null == heartbeatData){
						logger.error("heartbeat pack gets null,Can not create a 'down' file!");
						break;
					}
					
					//若二者都不为空则删除down文件,反之则添加
					if(heartbeatData.getSatellite() == 0 && 
							heartbeatData.getDeviationValue() == 0){
						if(!down.exists())
							down.delete();
					}else{
						if(!dir.exists())
							dir.mkdirs();
						
						if(!down.exists()){
							try {
								down.createNewFile();
							} catch (IOException e) {
								logger.error("createNewFile error");
								break;
							}
						}
					}
				}
				
			}
		}).start();;
	}

}
spring-web.xml 添加相应配置

	


经过多次测试最终采用第三种方案,测试已通过。

你可能感兴趣的:(spring,注解)