您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在Spring Boot中使用Filter過濾器,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1、引入spring-boot-starter-web
在pom.xml 中引入spring-boot-starter-web包。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
2、建立過濾器程序
@Order(1):表示過濾器的順序,假設(shè)我們有多個過濾器,你如何確定過濾器的執(zhí)行順序?這個注解就是規(guī)定過濾器的順序。
@WebFilter:表示這個class是過濾器。
里面的參數(shù),filterName 為過濾器名字,urlPatterns 為過濾器的范圍,initParams 為過濾器初始化參數(shù)。
過濾器里面的三個方法
init : filter對象只會創(chuàng)建一次,init方法也只會執(zhí)行一次。
doFilter : 主要的業(yè)務(wù)代碼編寫方法,可以多次重復(fù)調(diào)用
destroy : 在銷毀Filter時自動調(diào)用(程序關(guān)閉或者主動銷毀Filter)。
@Order(1) @WebFilter(filterName = "piceaFilter", urlPatterns = "/*" , initParams = { @WebInitParam(name = "URL", value = "http://localhost:8080")}) public class PiceaFilter implements Filter { private String url; /** * 可以初始化Filter在web.xml里面配置的初始化參數(shù) * filter對象只會創(chuàng)建一次,init方法也只會執(zhí)行一次。 * @param filterConfig * @throws ServletException */ @Override public void init(FilterConfig filterConfig) throws ServletException { this.url = filterConfig.getInitParameter("URL"); System.out.println("我是過濾器的初始化方法!URL=" + this.url + ",生活開始........."); } /** * 主要的業(yè)務(wù)代碼編寫方法 * @param servletRequest * @param servletResponse * @param filterChain * @throws IOException * @throws ServletException */ @Override public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException { System.out.println("我是過濾器的執(zhí)行方法,客戶端向Servlet發(fā)送的請求被我攔截到了"); filterChain.doFilter(servletRequest, servletResponse); System.out.println("我是過濾器的執(zhí)行方法,Servlet向客戶端發(fā)送的響應(yīng)被我攔截到了"); } /** * 在銷毀Filter時自動調(diào)用。 */ @Override public void destroy() { System.out.println("我是過濾器的被銷毀時調(diào)用的方法!,活不下去了................" ); } }
3、建立Contoller類
這個類比較簡單,不做特別說明
@RestController public class PiceaContoller { @RequestMapping("/query") public void asyncTask() throws Exception { System.out.println("我是控制類里面的方法,我正在思考..............."); } }
4、啟動類中增加注解,自動注冊Filter
@ServletComponentScan :在SpringBootApplication上使用@ServletComponentScan注解后,Servlet、Filter、Listener可以直接通過@WebServlet、@WebFilter、@WebListener注解自動注冊,無需其他代碼。
@SpringBootApplication @ServletComponentScan public class SpringBootFiFilterApplication { public static void main(String[] args) { SpringApplication.run(SpringBootFiFilterApplication.class, args); } }
5、測試結(jié)果
好吧,又到了看療效的時候了。
在瀏覽中輸入:http://localhost:2001/query
這個時候控制臺的輸入為如下圖片。
springboot一種全新的編程規(guī)范,其設(shè)計目的是用來簡化新Spring應(yīng)用的初始搭建以及開發(fā)過程,SpringBoot也是一個服務(wù)于框架的框架,服務(wù)范圍是簡化配置文件。
上述內(nèi)容就是如何在Spring Boot中使用Filter過濾器,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。