利用filter实现MVC应用框架 及 网页编码问题的解决方案

本文介绍MVC架构原理及如何使用Filter实现统一编码管理。通过Filter机制可以在请求到达Servlet或JSP前进行预处理,如设置字符编码等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

利用filter实现MVC应用框架 及 网页编码问题的解决方案


MVC(Model-View-Controller)是java网页应用的一种实现框架。亦即model-2。其主要思想是:统一的controller(一个或一组servlet)来处理request和response,然后决定和构造(通常利用jsp模板)显示给用户的界面(view),同时使用处理特定事务的共享的bean/EJB(model)。

Struts就是MVC框架的一个实例。


可是要使用这些框架,势必要花时间学习它们、同时局限于它们的实现机制。


servlet规范( specification )version 2.3 增加了一个新的机制:filter。其定义参见规范第6章。

凡是宣称支持servlet 2.3的web服务器都应支持filter机制。

利用filter,可以非常简便地实现自己的MVC。


简单地说,filter就是在调用web应用的若干或全部的动态内容(servlet/jsp)和静态内容(html/)之前,由servlet包容器自动调用的代码。

filter是web应用程序的一部分、 由开发者自己编写和发布。


--------- 以下内容整理自servlet specification version 2.3


filter可以实现以下功能:(动态和静态内容合称为“web资源”)

* 在调用request之前,访问request需要的一个资源。

* 在一个资源调用request之前,处理request。

* 修改request的头信息和数据,将request封装成定制的request版本。

* 修改response的头文件和数据,提供定制的response版本。

* 拦截对一个资源的调用。

* 以特定的顺序,零个、一个、或多个filter,作用于一个servlet、一组servlet或静态内容上。


filter的例子包括:

* 认证filter

* 日志和审计filter

* 图片转换fiter

* 数据压缩 filter

* 加密 filter

* 标记(Tokenizing) filter

* 触发资源访问事件的 filter

* 转换XML内容的XSL/T filter

* MIME-type 链 filter

* 缓存 filter


----------- 更多内容有劳其他/她好事者翻译吧


以下是本人实现和发布的一个character encoding filter的内容。

1)作用:统一设置所有servlet的编码方式。

2)好处:

(1)所有servlet都不需要包含设置编码方式的代码。

(2)可以统一管理/修改所有servlet的编码方式。

3)发布此filter。在“应用程序目录/web/WEB-INF/web.xml”的最前面(<web-app>下一行)添加:


-----------------在<web-app>下一行添加的内容-----------------


<!-- Example filter to set character encoding on each request -->

<filter>

<filter-name>Set Character Encoding</filter-name>

<filter-class>see.common.filters.CharacterEncodingFilter

</filter-class>

<init-param>

<param-name>encoding</param-name>

<param-value>gb2312</param-value>

</init-param>

</filter>


<!-- Filter mapping to apply the \"Set Character Encoding\" filter

to *all* requests processed by this web application -->

<filter-mapping>

<filter-name>Set Character Encoding</filter-name>

<url-pattern>/*</url-pattern>

</filter-mapping>


----------------------------------


4)此filter的代码如下:(注意,所有servlet中就不要设置request和response的编码了)


-----------filter的代码,已包含javadoc格式,写得很规范呐 (得意中...)----------


/*

* FileName: CharacterEncodingFilter.java

*

* Last Updated: 2002-4-19

*

* Writer: Mara Ren

*

*/


package see.common.filters;


import java.io.IOException;

import javax.servlet.*;


/**

* This filter sets the character encoding to be used for current

* request and response.

*

* The value is set according the following order:

* <li>Current user\'s configuration, if the user has registered</li>

* <li>The character encoding used in the body of current request</li>

* <li>The default character encoding in application\'s configuration</li>

*

* @version 2002-4-19

* @author Mara Ren

*/


public class CharacterEncodingFilter

implements Filter {


// --------------------- Instance Variables -----------------


/**

* The character encoding to set be used for current request

* and response

*/

private String encoding = null;


/**

* The filter configuration object we are associated with. If this value

* is null, this filter instance is not currently configured.

*/

protected FilterConfig filterConfig = null;


// ------------ Public Methods (standard, overrided) ---------


/**

* Place this filter into service.

*

* @param filterConfig The filter configuration object

*/


public void init(FilterConfig filterConfig)

throws ServletException {


this.filterConfig = filterConfig;


}


/**

* This filter sets the character encoding to be used for current

* request and response.

*

* @param request The servlet request we are processing

* @param result The servlet response we are creating

* @param chain The filter chain we are processing

*

* @exception IOException if an input/output error occurs

* @exception ServletException if a servlet error occurs

*/


public void doFilter(ServletRequest request,

ServletResponse response,

FilterChain chain)

throws IOException, ServletException {


encoding = getUserEncoding(); //当前用户的编码方式,是用户配置的一个值


if (encoding == null)

{

encoding = request.getCharacterEncoding(); // 浏览器返回的编码方式

}


if (encoding == null)

{

encoding = filterConfig.getInitParameter(\"encoding\"); //应用程序的编码方式

}


if (encoding != null)

{

request.setCharacterEncoding(encoding); //这是servlet 2.3新加的方法,专门在设置request编码方式

response.setContentType(\"text/html;charset=\" + encoding); //设置response编码方式

}


// Pass control on to the next filter

chain.doFilter(request, response);


}


/**

* Take this filter out of service.

*/

public void destroy() {


this.encoding = null;

this.filterConfig = null;


}


/**

* Get encoding from current user\'s configuration.

*/


private String getUserEncoding() {


// 从当前用户的session或配置文件中读取,自己编写吧

}


}


------------------------------------------------------


再罗嗦一句,看到很多朋友在为网页编码问题苦恼,不禁要问一句:

你们搞清楚request编码和response编码的区别了吗?

不要认为在response中设置了gb2312,就能直接按gb2312来访问request的数据。


request是浏览器返回给服务器、服务器处理后提供给你的。

request的编码取决于非常多的因素:

1)浏览器可以不返回编码方式,也可以返回约定的缺省编码(iso8859-1),也可以按客户端的当前设置(例如你的IE被你设为gb2312)。它可不是按照你提供的response的编码方式来返回request的!

2)如果浏览器不告诉服务器request编码方式,服务器可以按照约定的编码方式(iso8859-1)来为你提供request(这是servlet规范要求的,是最简洁最正确的解决办法),也可以好事地为你猜测客户端的设置或服务器端的设置而编码request(其实这样做是非常危险的,本人认为不可取!)。

3)有些java编程平台也会为你设置或猜测request的编码方式(如果你要真正发布一个应用,这个问题最好不要依赖于编程平台!)

4)开发者可以设置服务器用来解释和提供request的编码方式。


所以很多人往往不处理request编码、就访问request数据(大家倒是总记得处理reponse编码),要么运行结果乱七八糟,要么只能在特定情况下才能正确显示。


处理request编码的一个方案是:(不干预服务器解释和提供request的编码方式)

1)判断服务器是按什么编码方式来提供和解释request的

2)如果不是你要的编码方式,将request数据转换你要的编码方式,然后再按你的编码方式来使用request数据。


以上filter其实是解决request编码的另一个方案:(干预服务器解释和提供request的编码方式)

1)按照servlet 2.3定义,用户可以用request.setCharacterEncoding(encoding)方法来要求服务器按你要求的编码方式来解释和提供request。

2)不必转换request编码方式、就可以直接按你的编码方式来使用request数据了。


可以看到,后一种方案更简洁(不必转换编码了)。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值