當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringBoot------Servlet3.0的注解自定义原生Listener监听器
生活随笔
收集整理的這篇文章主要介紹了
SpringBoot------Servlet3.0的注解自定义原生Listener监听器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前言
常用監聽器: //contextListener可以監聽數據庫的連接,第三方組件的交互,還有靜態文件加載等等 servletContextListener HttpSessionListener servletRequestListener?
1.添加pom.xml相關依賴
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>top.ytheng</groupId><artifactId>springboot-demo</artifactId><version>0.0.1</version><packaging>jar</packaging><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.0.5.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><java.version>1.8</java.version></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><optional>true</optional><scope>true</scope></dependency></dependencies><build><!-- 打包的名稱 --><finalName>myspringboot</finalName><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin><plugin><artifactId>maven-compiler-plugin</artifactId><configuration><source>1.8</source><target>1.8</target></configuration></plugin></plugins></build> </project>2.添加自定義ContextListener監聽器
package top.ytheng.demo.listener;import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import javax.servlet.annotation.WebListener;/** 上下文監聽器* * */ @WebListener public class ContextListener implements ServletContextListener {@Overridepublic void contextInitialized(ServletContextEvent sce) {// TODO Auto-generated method stubSystem.out.println("======contextInitialized======");}@Overridepublic void contextDestroyed(ServletContextEvent sce) {// TODO Auto-generated method stubSystem.out.println("======contextDestroyed======");}}3.添加自定義RequestListener
package top.ytheng.demo.listener;import javax.servlet.ServletRequestEvent; import javax.servlet.ServletRequestListener; import javax.servlet.annotation.WebListener;@WebListener public class RequestListener implements ServletRequestListener{@Overridepublic void requestDestroyed(ServletRequestEvent sre) {// TODO Auto-generated method stubSystem.out.println("======requestDestroyed======");}@Overridepublic void requestInitialized(ServletRequestEvent sre) {// TODO Auto-generated method stubSystem.out.println("======requestInitialized======");}}4.添加測試控制器
package top.ytheng.demo.controller;import java.util.HashMap; import java.util.Map;import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;@RestController @RequestMapping("/api/v2/listener") public class ListenerController {@GetMapping("/test")public Object testListener() {Map<String, Object> map = new HashMap<>();map.put("username", "theng");map.put("password", "123456");System.out.println("listenerController");return map;} }5.添加啟動類
package top.ytheng.demo;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.boot.web.servlet.ServletComponentScan;@SpringBootApplication //等于下面3個 //@SpringBootConfiguration //@EnableAutoConfiguration //@ComponentScan //攔截器用到 @ServletComponentScan public class DemoApplication {public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args);}}6.右鍵項目Run As啟動,訪問地址
http://localhost:8080/api/v2/listener/test?
另附:
?
轉載于:https://www.cnblogs.com/tianhengblogs/p/9782475.html
總結
以上是生活随笔為你收集整理的SpringBoot------Servlet3.0的注解自定义原生Listener监听器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 将Windows下的文件同步到Linux
- 下一篇: 学习——JavaWeb05:JSP入门