java spring mvc 监听_利用spring的ApplicationListener监听某一类事件的发生

1、ApplicationListener在使用过程中可以监听某一事件的发生,可以做出相应的处理,这个方式不常用,但是在特殊情况下面还是有用的。

2、导包pom.xml

4.0.0

com.troy

springInit

0.0.1-SNAPSHOT

war

org.springframework

spring-webmvc

3.2.8.RELEASE

3、web.xml配置

springInit

index.html

index.htm

index.jsp

default.html

default.htm

default.jsp

springmvc

org.springframework.web.servlet.DispatcherServlet

contextConfigLocation

classpath:spring/spring-mvc.xml

1

springmvc

/

encodingFilter

org.springframework.web.filter.CharacterEncodingFilter

encoding

UTF-8

forceEncoding

true

encodingFilter

/

4、spring-mvc.xml配置

http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd

http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd

http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd

http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd

http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd

http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd

http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

5、在spring的作用是为了在bean加载完成过后进行初始化加载

这里可以参考:http://www.cnblogs.com/ll409546297/p/6903357.html

6、目录结构,因为我用初始化加载来实现某一个事件的监听,自己可以根据相应事件触发来实现

d5ea740771e3d40a4a8f283315a8b0dd.png

7、触发方式

1)第一步:因为事件触发需要用到ApplicationContext的publishEvent来触发事件,我这里没有ClassPathXmlApplicationContext的方式来加载配置文件,而是实现ApplicationContextAware这个接口来实现ApplicationContext的加载

public class InitApplicationContext implementsApplicationContextAware{public staticApplicationContext ac;public void setApplicationContext(ApplicationContext applicationContext) throwsBeansException {this.ac =applicationContext;

}

}

2)第二步编写事件:继承ApplicationEvent类会要求重写一个构造方法

public class InitEvent extendsApplicationEvent{publicString data;publicInitEvent(Object source) {super(source);

}publicInitEvent(Object source,String data) {super(source);this.data =data;

}publicString getData() {returndata;

}public voidsetData(String data) {this.data =data;

}//这里我是利用spring初始化来实现方法的加载

public static voidexecute(){

ApplicationContext ac=InitApplicationContext.ac;

System.out.println("test==================test");

InitEvent ie= new InitEvent("test", "test");

ac.publishEvent(ie);

}

}

3)通过初始化的方式来触发这个事件,这个可以通过其他方式,比如servlet等方式来触发

public class SpringListener implements ApplicationListener{public voidonApplicationEvent(ContextRefreshedEvent event) {

System.out.println(event.getApplicationContext());//判断spring容器是否加载完成

if (event.getApplicationContext().getParent() == null) {

Init.init();

InitEvent.execute();

}

}

}

4)上面的方式也可以触发事件,但是写出来比较繁琐。我们一般通过ApplicationListener接口来实现事件的监听,这样来触发事件的产生。通过ApplicationListener的泛型机制,来监听事件的发生,这里可以针对于时间做相对处理,实现对事件的监听

public class SpringListenerEvent implements ApplicationListener{public voidonApplicationEvent(InitEvent event) {

System.out.println("事件处理==================事件处理");

System.out.println(event.getData());

}

}

8、总体来说:ApplicationListener是对相应应用的监听,只是对于不同方式,通过不同方式来呈现!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值