真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MVC設(shè)計模式+過濾器與監(jiān)聽器-創(chuàng)新互聯(lián)

MVC設(shè)計模式+過濾器與監(jiān)聽器 一、MVC設(shè)計模式 1.概念 - 代碼的分層
字母表示理解
MModle模型層業(yè)務(wù)的具體實現(xiàn)
VView視圖層展示數(shù)據(jù)
CController控制器層控制業(yè)務(wù)流程
2.細(xì)化理解層數(shù)

View:視圖層,用于存放前端頁面

成都創(chuàng)新互聯(lián)公司于2013年成立,先為魚臺等服務(wù)建站,魚臺等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為魚臺企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

Controller:控制器層,用于存放Servlet(屬于中間商)

Modle-Biz/Service:邏輯業(yè)務(wù)層,用于存放業(yè)務(wù)具體的實現(xiàn)

Modle-Dao/Mapper:數(shù)據(jù)持久層,用于存放操作數(shù)據(jù)的實現(xiàn)

3.優(yōu)缺點

缺點:使用MVC不能減少代碼量, 增加系統(tǒng)結(jié)構(gòu)和實現(xiàn)的復(fù)雜性

優(yōu)點:整個項目結(jié)構(gòu)清晰,業(yè)務(wù)邏輯清晰,降低了代碼的耦合性,代碼的重用性高

4.各層的命名規(guī)范

Controller控制器層:controller/servlet/action/web

Modle-Biz 邏輯業(yè)務(wù)層:service/biz

Modle-Dao 數(shù)據(jù)持久層:dao/persist/mapper

二、Filter過濾器 1.簡介

Filter:過濾器,通過Filter可以攔截訪問web資源的請求與響應(yīng)操作。

Servlet API中提供了一個Filter接口,開發(fā)web應(yīng)用時,如果編寫的Java類實現(xiàn)了這個接口,則把這個java類稱之為過濾器。他可以攔截Jsp、Servlet、 靜態(tài)圖片文件、靜態(tài) html文件等,從而實現(xiàn)一些特殊的功能。

例如:實現(xiàn)URL級別的權(quán)限訪問控制、過濾敏感詞匯、壓縮響應(yīng)信息等一些高級功能。

2.創(chuàng)建步驟

javax.servlet.Filter接口中的方法介紹:

方法描述
init(FilterConfig fConfig)初始化方法
doFilter(ServletRequest request, ServletResponse response, FilterChain chain)過濾方法
destroy()銷毀方法
1.創(chuàng)建過濾器類并實現(xiàn)Filter接口
public class Filter01 implements Filter {public Filter01() {}
    
    public void init(FilterConfig fConfig) throws ServletException {}

    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {//chain過濾器鏈
        //注意:如果攔截后不調(diào)用doFilter(),請求將無法傳到下一個過濾器或服務(wù)器里
		//chain.doFilter(request, response);//放行
    }
	public void destroy() {}
}
2.在web.xml配置文件中配置過濾器信息
Filter01com.dream.filter.Filter01Filter01/*
3.過濾器鏈

客戶端對服務(wù)器請求之后,服務(wù)器在調(diào)用Servlet之前,會執(zhí)行一組過濾器(多個過濾器),那么這組過濾器就稱為一條過濾器鏈。

4.生命周期 - 單個過濾器

1.單個過濾器的生命周期:

項目啟動時創(chuàng)建Filter01對象,調(diào)用Filter01()、init()

2. 因為此過濾器配置的是所有請求攔截,所以發(fā)送請求時,調(diào)用doFilter()
            	3. 項目更新或銷毀時,調(diào)用destroy()

1.創(chuàng)建過濾器類并實現(xiàn)Filter接口

public class Filter01 implements Filter {public Filter01() {System.out.println("Filter01 - Filter01()");
    }
    public void init(FilterConfig fConfig) throws ServletException {System.out.println("Filter01 - init()");
	}
    //doFilter(請求,響應(yīng),過濾器鏈)
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {	System.out.println("Filter01執(zhí)行前");
    	chain.doFilter(request, response);//放行
    	System.out.println("Filter01執(zhí)行后");
	}
	public void destroy() {System.out.println("Filter01 - destroy()");
	}
}

2.在web.xml配置文件中配置過濾器信息

Filter01com.dream.filter.Filter01Filter01/*
5.生命周期 - 多個過濾器

創(chuàng)建順序:創(chuàng)建順序無序

執(zhí)行順序:按照web.xml中配置的順序執(zhí)行

1.創(chuàng)建過濾器類并實現(xiàn)Filter接口

//----------- Filter01 -----------------------
public class Filter01 implements Filter {public Filter01() {System.out.println("Filter01 - Filter01()");
    }
    public void init(FilterConfig fConfig) throws ServletException {System.out.println("Filter01 - init()");
	}
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {System.out.println("Filter01執(zhí)行前");
    	chain.doFilter(request, response);//放行
    	System.out.println("Filter01執(zhí)行后");
	}
    
	public void destroy() {System.out.println("Filter01 - destroy()");
	}
}
//----------- Filter02 -----------------------
public class Filter02 implements Filter {public Filter02() {System.out.println("Filter02 - Filter02()");
	}

	public void init(FilterConfig fConfig) throws ServletException {System.out.println("Filter02 - init()");
	}
	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {System.out.println("Filter02執(zhí)行前");
		chain.doFilter(request, response);//放行
		System.out.println("Filter02執(zhí)行后");
	}
	public void destroy() {System.out.println("Filter02 - destroy()");
	}
}
//----------- Filter03 -----------------------
public class Filter03 implements Filter {public Filter03() {System.out.println("Filter03 - Filter03()");
	}

	public void init(FilterConfig fConfig) throws ServletException {System.out.println("Filter03 - init()");
	}
	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {System.out.println("Filter03執(zhí)行前");
		chain.doFilter(request, response);//放行
		System.out.println("Filter03執(zhí)行后");
	}
	public void destroy() {System.out.println("Filter03 - destroy()");
	}
}

2.在web.xml配置文件中配置過濾器信息

Filter01com.dream.filter.Filter01Filter01/*Filter02com.dream.filter.Filter02Filter02/*Filter03com.dream.filter.Filter03Filter03/*
6.案例一:編碼過濾器

解決請求和響應(yīng)亂碼問題

public class EncodeFilter implements Filter {private String encode;

	public void init(FilterConfig fConfig) throws ServletException {//獲取web.xml中該過濾器的初始化屬性
		encode = fConfig.getInitParameter("encode");
	}

	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {HttpServletRequest req = (HttpServletRequest) request;
		HttpServletResponse resp = (HttpServletResponse) response;

		resp.setContentType("text/html;charset="+encode);
		req.setCharacterEncoding(encode);
		
		chain.doFilter(req, resp);
	}
	public void destroy() {}
}
EncodeFiltercom.dream.filter.EncodeFilterencodeUTF-8EncodeFilter/*
7.案例二:登錄權(quán)限過濾器

解決權(quán)限的統(tǒng)一控制問題,沒有登錄,就不能直接跳轉(zhuǎn)到其他詳情頁面

public class LoginFilter implements Filter {public void init(FilterConfig fConfig) throws ServletException {}
   public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {HttpServletRequest req = (HttpServletRequest) request;
   	HttpServletResponse resp = (HttpServletResponse) response;
   	
   	//獲取請求地址
   	String uri = req.getRequestURI();
       //獲取請求鏈接的Get數(shù)據(jù)
       String queryString = request.getQueryString();
       if(queryString == null){   queryString = "";
       }

   	if(uri.contains("welcome.jsp") ||uri.contains("login.jsp") 
   			|| uri.contains("register.jsp") || queryString.contains("action=login") 
   			|| queryString.contains("action=register")){chain.doFilter(request, response);
   	}else{   HttpSession session = req.getSession();
   		String user = (String) session.getAttribute("user");
   		if(user == null){//沒登錄過
   			resp.sendRedirect("login.jsp");
   		}else{//登錄過
   			chain.doFilter(request, response);
   		}
   	}
   }
   public void destroy() {}
}
LoginFiltercom.dream.filter.LoginFilterLoginFilter/*
8.案例三:關(guān)鍵字過濾器

解決文檔內(nèi)的一個敏感詞匯

public class SensitiveWordsFilter implements Filter {public void init(FilterConfig fConfig) throws ServletException {}
	public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {		chain.doFilter(new MyHttpServletRequestWapper((HttpServletRequest) request), response);//放行
	}
	public void destroy() {}

	///請求包裝類
	class MyHttpServletRequestWapper extends HttpServletRequestWrapper{public MyHttpServletRequestWapper(HttpServletRequest request) {	super(request);
		}
		@Override
		public String getParameter(String name) {	
			String value = super.getParameter(name);
			value = value.replaceAll("傻逼", "**");
			//把尖括號替換成字符尖括號,替換后不會認(rèn)為是html里的尖括號符號
			value = value.replaceAll("<", "<");
			value = value.replaceAll(">", ">");
			
			return value;
		}
	}
}
SensitiveWordsFiltercom.dream.filter.SensitiveWordsFilterSensitiveWordsFilter/*
9.注解配置過濾器(簡化配置)

@WebFilter(

? value=“/*”,

? initParams= {@WebInitParam(name = “encode”, value = “UTF-8”),

? @WebInitParam(name = “name”, value = “java”)}

)

創(chuàng)建順序:創(chuàng)建順序無序

執(zhí)行順序:按照類名的順序執(zhí)行

@WebFilter(value="/*",initParams={@WebInitParam(name="encode",value="UTF-8")})
public class EncodeFilter implements Filter {...
}
三、監(jiān)聽器 1.概念

監(jiān)聽器用于監(jiān)聽web應(yīng)用中某些對象信息的創(chuàng)建、銷毀、增加,修改,刪除等動作的

發(fā)生,然后作出相應(yīng)的響應(yīng)處理。當(dāng)范圍對象的狀態(tài)發(fā)生變化的時候,服務(wù)器自動調(diào)用

監(jiān)聽器對象中的方法。

常用于統(tǒng)計在線人數(shù)和在線用戶,系統(tǒng)加載時進(jìn)行信息初始化,統(tǒng)計網(wǎng)站的訪問量等。

2.創(chuàng)建步驟
  1. 創(chuàng)建類
  2. 實現(xiàn)指定的監(jiān)聽器接口中的方法
  3. 在web.xml文件中配置監(jiān)聽/在類上標(biāo)注@WebListener 注解
3.第一類:域?qū)ο蟊O(jiān)聽器

監(jiān)聽域?qū)ο?創(chuàng)建與銷毀的監(jiān)聽器

監(jiān)聽器接口描述
ServletContextListener監(jiān)聽Servlet上下文對象的創(chuàng)建、銷毀
HttpSessionListener監(jiān)聽會話對象的創(chuàng)建、銷毀
ServletRequestListener監(jiān)聽請求對象的創(chuàng)建、銷毀

Servlet上下文對象 創(chuàng)建和銷毀的監(jiān)聽器

public class ApplicationListener implements ServletContextListener {	//Servlet上下文對象創(chuàng)建的時候被調(diào)用
	@Override
	public void contextInitialized(ServletContextEvent contextEvent) {System.out.println("Servlet上下文對象被創(chuàng)建啦...");
		
        //項目一旦啟動,此處代碼運行!
		Timer timer=new Timer();
		//5秒鐘之后開始執(zhí)行,以后每間隔2秒發(fā)送一封郵件!
		timer.schedule(new TimerTask() {	@Override
			public void run() {		//System.out.println("發(fā)郵件...."+new Date());
			}
		}, 5000, 2000);
	}
	//Servlet上下文對象銷毀的時候被調(diào)用
	@Override
	public void contextDestroyed(ServletContextEvent contextEvent) {System.out.println("Servlet上下文對象被銷毀啦...");
		//服務(wù)器在停止的時候,要執(zhí)行某些動作,那么就可以把代碼寫在這個位置?。?!	
	}
}
com.dream.listener.ApplicationListener

會話對象 創(chuàng)建和銷毀的監(jiān)聽器

@WebListener
public class SessionListener implements HttpSessionListener{@Override
	public void sessionCreated(HttpSessionEvent event) {HttpSession session = event.getSession();
		System.out.println("session對象創(chuàng)建啦...."+session.getId());
	}
	@Override
	public void sessionDestroyed(HttpSessionEvent event) {HttpSession session = event.getSession();
		System.out.println("session對象銷毀啦...."+session.getId());
	}
}

請求對象的創(chuàng)建和銷毀的監(jiān)聽器

@WebListener
public class RequestListener implements ServletRequestListener{@Override
	public void requestInitialized(ServletRequestEvent event) {ServletRequest request = event.getServletRequest();
		System.out.println("Request對象的創(chuàng)建...."+request);
	}
	@Override
	public void requestDestroyed(ServletRequestEvent event) {ServletRequest request = event.getServletRequest();
		System.out.println("Request對象的銷毀...."+request);
	}

}
案例:統(tǒng)計網(wǎng)站在線人數(shù)
@WebListener
public class ApplicationListener implements ServletContextListener{@Override
	public void contextInitialized(ServletContextEvent event) {//項目啟動,向application對象中存一個變量,初始值0
		ServletContext application = event.getServletContext();  
		application.setAttribute("count", 0);
	}
	@Override
	public void contextDestroyed(ServletContextEvent event) {}
}

@WebListener
public class SessionListener implements HttpSessionListener {@Override
	public void sessionCreated(HttpSessionEvent event) {// 有人訪問了 count++
		HttpSession session = event.getSession();
		ServletContext application = session.getServletContext();

		int count =(Integer) application.getAttribute("count");
		count++;
		application.setAttribute("count", count);
	}
	@Override
	public void sessionDestroyed(HttpSessionEvent event) {// 有人離開了 count--
		HttpSession session = event.getSession();
		ServletContext application = session.getServletContext();
		
		Integer count =(Integer) application.getAttribute("count");
		count--;
		application.setAttribute("count", count);
	}
}
4.第二類:屬性監(jiān)聽器

監(jiān)聽域?qū)ο髮傩宰兓谋O(jiān)聽器

監(jiān)聽器接口描述
ServletContextAttributeListener監(jiān)聽Servlet上下文對象屬性的創(chuàng)建、刪除、替換
HttpSessionAttributeListener監(jiān)聽會話對象屬性的創(chuàng)建、刪除、替換
ServletRequestAttributeListener監(jiān)聽請求對象屬性的創(chuàng)建、刪除、替換

Servlet上下文對象屬性變化的監(jiān)聽器

@WebListener
public class ApplicationAttributeListener implements ServletContextAttributeListener{//Servlet上下文對象新增值的時候被調(diào)用
	@Override
	public void attributeAdded(ServletContextAttributeEvent event) {String str = "Servlet上下文對象中添加了屬性:"+event.getName()
            +",屬性值是:"+event.getValue();
		System.out.println(str);
	}
 	//Servlet上下文對象刪除值的時候被調(diào)用
	@Override
	public void attributeRemoved(ServletContextAttributeEvent event) {String str = "Servlet上下文對象中刪除了屬性:"+event.getName()
            +",屬性值是:"+event.getValue();
		System.out.println(str);
	}
	//Servlet上下文對象替換值的時候被調(diào)用
	@Override
	public void attributeReplaced(ServletContextAttributeEvent event) {String str = "Servlet上下文對象中替換了屬性:"+event.getName()
            +",屬性值是:"+event.getValue();
		System.out.println(str);
	}
}

5.第三類:監(jiān)聽HttpSession中的對象(JavaBean)

前兩類監(jiān)聽器是作用在 ServletContext HttpSession ServletRequest上

第三類監(jiān)聽器是作用在JavaBean上的。

注意:這類監(jiān)聽器不需要在web.xml中配置

監(jiān)聽器接口描述
HttpSessionBindingListener監(jiān)聽會話對象中JavaBean對象的綁定、刪除
HttpSessionActivationListener監(jiān)聽會話對象中JavaBean對象的鈍化、活化

會話對象中JavaBean對象的綁定和刪除的監(jiān)聽器

實現(xiàn)了HttpSessionBindingListener接口的JavaBean對象可以感知自己被綁定到Session中和 Session中刪除的事件

  • 當(dāng)對象被綁定到HttpSession對象中時,web服務(wù)器調(diào)用該對象的

void valueBound(HttpSessionBindingEvent event)方法

  • 當(dāng)對象從HttpSession對象中解除綁定時,web服務(wù)器調(diào)用該對象的

void valueUnbound(HttpSessionBindingEvent event)方法

public class User implements HttpSessionBindingListener {private int id;
	private String name;

	public User() {}
	public User(int id, String name) {this.id = id;
		this.name = name;
	}
	public int getId() {return id;
	}
	public void setId(int id) {this.id = id;
	}
	public String getName() {return name;
	}
	public void setName(String name) {this.name = name;
	}
	public void valueBound(HttpSessionBindingEvent event) {System.out.println("對象綁定到了Session中");
	}
	public void valueUnbound(HttpSessionBindingEvent event) {System.out.println("對象從Session中移除");
	}
}
<%@ page import="com.dream.vo.User"%><%@ page language="java" pageEncoding="UTF-8"%>ServletContextAttributeListener監(jiān)聽器測試<%
		User user = new User(1, "aaa");
		session.setAttribute("user", user);
		session.removeAttribute("user");
	%>

會話對象中JavaBean對象的鈍化和活化的監(jiān)聽器

實現(xiàn)了HttpSessionActivationListener接口的JavaBean對象可以感知自己被活化(反序列化)和鈍化(序列化)的事件

鈍化(序列化):在內(nèi)存中JavaBean對象通過Session存儲硬盤的過程

活化(反序列化):從硬盤中通過Session取出JavaBean對象到內(nèi)存的過程

  • javabean對象將要隨Session對象被鈍化(序列化)之前,web服務(wù)器調(diào)用該對象的

void sessionWillPassivate(HttpSessionEvent event) 方法

這樣javabean對象就可以知道自己將要和Session對象一起被鈍化到硬盤中

  • javabean對象將要隨Session對象被活化(反序列化)之后,web服務(wù)器調(diào)用該對象的void sessionDidActive(HttpSessionEvent event)方法

這樣javabean對象就可以知道自己將要和Session對象一起被活化回到內(nèi)存中

注意: 想要隨著Session 被鈍化、活化的對象它的類必須實現(xiàn)Serializable 接口,放在

Session中沒有實現(xiàn)Serilizable接口的對象,在Session鈍化時,不會被序列化到磁盤上。

public class User implements Serializable, HttpSessionActivationListener{private static final long serialVersionUID = -1566395353697458460L;
	private int id;
	private String name;
	public User() {}
	public User(int id, String name) {this.id = id;
		this.name = name;
	}
	public int getId() {return id;
	}
	public void setId(int id) {this.id = id;
	}
	public String getName() {return name;
	}
	public void setName(String name) {this.name = name;
	}
	//鈍化
	@Override
	public void sessionWillPassivate(HttpSessionEvent event) {System.out.println("對象被鈍化......." + event.getSource());
	}
	//活化
	@Override
	public void sessionDidActivate(HttpSessionEvent event) {System.out.println("對象被活化......");
	}
}

在WebContent\META-INF文件夾下創(chuàng)建一個context.xml文件

6.面試題:Session 的鈍化與活化
  • 鈍化:當(dāng)服務(wù)器正常關(guān)閉時,還存活著的session(在設(shè)置時間內(nèi)沒有銷毀) 會隨著服務(wù)器的關(guān)閉被以文件(“SESSIONS.ser”)的形式存儲在tomcat 的work 目錄下,這個過程叫做Session 的鈍化。

  • 活化:當(dāng)服務(wù)器再次正常開啟時,服務(wù)器會找到之前的“SESSIONS.ser” 文件,從中恢復(fù)之前保存起來的Session 對象,這個過程叫做Session的活化。

  • 注意事項

  1. 想要隨著Session 被鈍化、活化的對象它的類必須實現(xiàn)Serializable 接口,還有的是只有在服務(wù)器正常關(guān)閉的條件下,還未超時的Session 才會被鈍化成文件。當(dāng)Session 超時、調(diào)用invalidate方法或者服務(wù)器在非正常情況下關(guān)閉時,Session 都不會被鈍化,因此也就不存在活化。
  2. 在被鈍化成“SESSIONS.ser” 文件時,不會因為超過Session 過期時間而消失,這個文件會一直存在,等到下一次服務(wù)器開啟時消失。
  3. 當(dāng)多個Session 被鈍化時,這些被鈍化的Session 都被保存在一個文件中,并不會為每個Session 都建立一個文件。

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


新聞名稱:MVC設(shè)計模式+過濾器與監(jiān)聽器-創(chuàng)新互聯(lián)
本文路徑:http://weahome.cn/article/hgjij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部