Spring Boot 2使用Servlet、Listener和Filter配置

来源:https://www.cnblogs.com/gdjlc/archive/2019/09/24/11581722.html
-Advertisement-
Play Games

一、使用Servlet配置 二、使用Listener配置 三、使用Filter配置 ...


開發環境:IntelliJ IDEA 2019.2.2
Spring Boot版本:2.1.8

新建一個名稱為demo的Spring Boot項目。

一、使用Servlet配置

1、修改啟動類 DemoApplication.cs 代碼,加入註解ServletComponentScan,它用於掃描Servlet組件,包括使用@WebServlet、
@WebFilter和@WebListener進行修飾的類。

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;

@SpringBootApplication
@ServletComponentScan
public class DemoApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

2、新建一個類 MyServlet.cs,繼承HttpServlet並且加入註解 @WebServlet

package com.example.demo;

import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet(value="/servlet")
public class MyServlet extends HttpServlet {
    public MyServlet(){
        System.out.println("servlet類");
    }
    protected void service(HttpServletRequest arg0, HttpServletResponse arg1){
        System.out.println("servlet方法");
    }
}

在瀏覽器中訪問http://localhost:8080/servlet,可看到IDEA控制台輸出
servlet類
servlet方法

二、使用Listener配置

1、啟動類 DemoApplication.cs 代碼在使用Servlet配置上已經加入註解ServletComponentScan,在此保持不變。

2、新建一個類 MyServlet.cs

package com.example.demo;

import javax.servlet.ServletRequestEvent;
import javax.servlet.ServletRequestListener;
import javax.servlet.annotation.WebListener;

@WebListener
public class MyListener implements ServletRequestListener {
    @Override
    public void requestInitialized(ServletRequestEvent servletRequestEvent){
        System.out.println("請求創建");
    }
    @Override
    public void requestDestroyed(ServletRequestEvent servletRequestEvent){
        System.out.println("請求銷毀");
    }
}

在瀏覽器中訪問一個介面,如上步http://localhost:8080/servlet,可看到IDEA控制台輸出:
請求創建
請求銷毀

附,常用的監聽器介面:

1.ServletContextListener -- 監聽servletContext對象的創建以及銷毀    
    1.1  contextInitialized(ServletContextEvent arg0)   -- 創建時執行    
    1.2  contextDestroyed(ServletContextEvent arg0)  -- 銷毀時執行
2.HttpSessionListener  -- 監聽session對象的創建以及銷毀    
    2.2  sessionCreated(HttpSessionEvent se)   -- 創建時執行    
    2.2  sessionDestroyed(HttpSessionEvent se) -- 銷毀時執行
3.ServletRequestListener -- 監聽request對象的創建以及銷毀    
    3.1  requestInitialized(ServletRequestEvent sre) -- 創建時執行    
    3.2  requestDestroyed(ServletRequestEvent sre) -- 銷毀時執行
4.ServletContextAttributeListener  -- 監聽servletContext對象中屬性的改變    
    4.1  attributeAdded(ServletContextAttributeEvent event) -- 添加屬性時執行    
    4.2  attributeReplaced(ServletContextAttributeEvent event) -- 修改屬性時執行    
    4.3  attributeRemoved(ServletContextAttributeEvent event) -- 刪除屬性時執行
5.HttpSessionAttributeListener  --監聽session對象中屬性的改變    
    5.1  attributeAdded(HttpSessionBindingEvent event) -- 添加屬性時執行    
    5.2  attributeReplaced(HttpSessionBindingEvent event) -- 修改屬性時執行    
    5.3  attributeRemoved(HttpSessionBindingEvent event) -- 刪除屬性時執行
6.ServletRequestAttributeListener  --監聽request對象中屬性的改變    
    6.1  attributeAdded(ServletRequestAttributeEvent srae) -- 添加屬性時執行    
    6.2  attributeReplaced(ServletRequestAttributeEvent srae) -- 修改屬性時執行    
    6.3  attributeRemoved(ServletRequestAttributeEvent srae) -- 刪除屬性時執行

三、使用Filter配置

1、啟動類 DemoApplication.cs 代碼在使用Servlet配置上已經加入註解ServletComponentScan,在此保持不變。

2、新建一個類 MyFilter.cs

package com.example.demo;

import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;

//第一個參數為過濾器名字,第二個參數為要攔截的請求地址
@WebFilter(filterName="myFilter", urlPatterns="/*")
public class MyFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("filter初始化");
    }

    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, 

ServletException {
        System.out.println("filter方法");
        chain.doFilter(request, response);
    }

    @Override
    public void destroy() {
        System.out.println("filter銷毀");
    }
}

在瀏覽器中訪問http://localhost:8080/servlet,可看到IDEA控制台輸出:
filter方法

最後,附上項目結構圖:

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天一個同事問我文件複製的問題,他一個100M的文件複製的指定目錄下竟然成了1G多,嚇我一跳,後來看了他的代碼發現是自己通過位元組流複製的,定義的位元組數組很大,導致複製後目標文件非常大,其實就是空行等一些無效空間。我也是很少用這種方式拷貝問價,大多數用Apache提供的commons-io中的File ...
  • # -*-coding:utf-8-*- # !/usr/bin/env python # Author :vilicute ''' func:對某文件夾下的圖片進行批量裁剪 ''' import os import time from PIL import Image start = time.t... ...
  • 2019-09-24-23:24:24 一.什麼時生成器? 1.生成器的實質就是迭代器 二.生成器的獲取方式 1.通過生成器函數 2.通過各種推導式獲取生成器 3.通過數據轉換獲取生成器 三..案例 四.yield和return的區別 yield是通過分段執行函數,執行了yield不會立即停止函數的 ...
  • 預設情況下Spring Boot使用了內嵌的Tomcat伺服器,項目最終被打成jar包運行,每個jar包可以被看作一個獨立的Web伺服器。 傳統的Web開發,一般會將Web應用打成一個war包,然後將其部署到Web伺服器中運行。 Spring Boot也支持傳統的部署模式。 ...
  • 一、寫在前面 Requests 是用Python語言編寫,基於 urllib,採用 Apache2 Licensed 開源協議的 HTTP 庫。它比 urllib 更加方便,可以節約我們大量的工作,完全滿足 HTTP 測試需求。Requests 的哲學是以 PEP 20 的習語為中心開發的,所以它比 ...
  • 目前,GitHub 上最新 release 版本是 Zipkin 2.12.9,從 2.12.6 版本開始有個較大的更新,遷移使用 Armeria HTTP 引擎。 從此版本開始,若直接添加依賴的 Spring Boot 應用啟動會存在衝突,會報上面的錯,降到2.12.3版本就可以正常啟動了。 "參 ...
  • docker安裝elk日誌分析系統 在win10上安裝docker環境 tip:win7/8 win10 現在 Docker 有專門的 Win10 專業版系統的安裝包,需要開啟Hyper V。 程式和功能 啟用或關閉Windows功能 選中Hyper V 1、安裝 Toolbox 最新版 Toolb ...
  • 今天這Class文件看的我一臉懵圈。有種當初學PE時候的感覺了。 類文件結構 如果電腦的CPU指令集只有X86一種,操作系統也只有windows,那也許Java語言就不會出現。Java在誕生之初就提出一個非常著名的口號:一次編寫到處運行。 class文件的結構 Class文件是一組以8位位元組為基礎 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...