Springboot使用@WebListener 作为web监听器的过程解析
一、使用@WebListener 作为web监听器
1、使用监听器必须在启动类上添加扫描
@ServletComponentScan
@ServletComponentScan @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class); } }
二、Listener的四种注册方式
1、@WebListener 注解方式
示例1:Session监听器
- @WebListener 本质上是事件监听
- HttpSessionListener和HttpSessionAttributeListener都是实现了EventListener接口
@WebListener public class SessionListener implements HttpSessionAttributeListener, HttpSessionListener { // ... ... 省略实现方法 }
示例2:属性监听器
@WebListener public class ContextListener implements ServletContextAttributeListener,ServletContextListener { // ... ... 省略实现方法 }
2、普通Bean方式
1、创建监听器类
将 Listener 当成一个普通的 spring bean,spring boot 会自动将其包装为 ServletListenerRegistrationBean
对象
- ServletContextListener 需要实现该接口
- contextInitialized 容器初始化接口
- contextDestroyed 容器销毁方法
@Component public class BeanContextListener implements ServletContextListener { // ... ... 省略实现方法 }
3、Bean手动注册方式
1、创建一个配置监听类
ServletContextListener 主动注入
public class ConfigContextListener implements ServletContextListener { // ... .... 省略实现方法 }
2、通过配置监听类将自定义监听类注册
@Bean public ServletListenerRegistrationBean configContextListener() { ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean(); bean.setListener(new ConfigContextListener()); return bean; }
4、上下文初始化方式
在初始化类中注入监听器
1、创建监听器
public class SelfContextListener implements ServletContextListener { // ... ... 省略实现方法 }
2、 使用上下文添加监听器
@Component public class ExtendServletConfigInitializer implements ServletContextInitializer { @Override public void onStartup(ServletContext servletContext) throws ServletException { servletContext.addListener(SelfContextListener.class); } }
到此这篇关于Springboot使用@WebListener 作为web监听器的文章就介绍到这了,更多相关Springboot 使用@WebListener内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
mybatis3.4.6 批量更新 foreach 遍历map 的正确姿势详解
这篇文章主要介绍了mybatis3.4.6 批量更新 foreach 遍历map 的正确姿势详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-11-11Spring Cloud 使用 Resilience4j 实现服务熔断的方法
服务熔断是为了保护我们的服务,比如当某个服务出现问题的时候,控制打向它的流量,让它有时间去恢复,或者限制一段时间只能有固定数量的请求打向这个服务,这篇文章主要介绍了Spring Cloud 使用 Resilience4j 实现服务熔断,需要的朋友可以参考下2022-12-12springboot使用webservice发布和调用接口的实例详解
本文介绍了如何在Springboot中使用webservice发布和调用接口,涵盖了必要的依赖添加和代码示例,文中提供了服务端和客户端的实现方法,以及如何设置端口和服务地址,帮助读者更好地理解和应用Springboot结合webservice的技术2024-10-10
最新评论