web.xml添加编码过滤器

解决前后台交互汉字乱码

在项目中的web.xml中添加如下代码:

<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>

<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

时间: 2024-10-10 02:07:09

web.xml添加编码过滤器的相关文章

web.xml配置编码过滤器

如果没有配置 1,出现中文乱码问题 2,只能查询英文,无法查询出中文 注意: 其中encoding用来设置编码格式,forceEncoding用来设置是否理会 request.getCharacterEncoding()方法,设置为true则强制覆盖之前的编码格式. <!-- 配置字符编码过滤器 --> <filter> <filter-name>encoding</filter-name> <filter-class>org.springfra

web.xml文件--编码注意事项

写在前面: 最近发布项目的时候,要修改web.xml文件的内容,然后我在本机的web.xml文件中是有注释的,但是到了服务器上面,就说编码不同.我也没有怎么注意.就继续启动服务器,但是访问网站,一直报错.很是郁闷,拿比对工具比对两个web.xml文件的不同,除了一个注释有乱码外 ,没有任何区别.然后 我就把乱码的注释给去掉了 因为这个时候的注释在服务器上是 乱码的 因为编码不同  我不知道 编码不同造成乱码的注释 还可以有这种操作???????重启服务器 然后问题就被解决了..郁闷呀..所以.大

web.xml中Filter过滤器标签说明

原文:http://www.cnblogs.com/edwardlauxh/archive/2010/03/11/1918618.html 在研究liferay框架中看到Web.xml中加入了过滤器的标签,可以根据页面提交的URL地址进行过滤,发现有几个新标签没用过,下面就介绍以下几个过滤器的标签用法: <!-- 定义Filter --> <filter> <!-- Filter的名字 --> <filter-name>log</filter-name

Web.xml配置----字符过滤器

添加EncodingFilter类实现Filter接口 import javax.servlet.*;import javax.servlet.http.HttpServletRequest;import java.io.IOException; public class EncodingFilter implements Filter {    FilterConfig config = null;    // default to GBK    private String targetEn

Web.xml中Filter过滤器标签几个说明

在研究liferay框架中看到Web.xml中加入了过滤器的标签,可以根据页面提交的URL地址进行过滤,发现有几个新标签没用过,下面就介绍以下几个过滤器的标签用法: <!-- 定义Filter --> <filter> <!-- Filter的名字 --> <filter-name>log</filter-name> <!-- Filter的实现类 --> <filter-class>lee.LogFilter</f

web.xml设置编码

<filter> <filter-name>CharacterFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8

web.xml 中以编码方式添加filter并设置初始化参数AbstractAnnotationConfigDispatchServletInitializer

web.xml中配置filter <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=&q

在web.xml中添加配置解决hibernate 懒加载异常

在web.xml添加如下,注意:在配置在struts2的拦截器之前 <!-- 配置Spring的用于解决懒加载问题的过滤器 --> <filter> <filter-name>OpenSessionInViewFilter</filter-name> <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class&g

Jetty添加Filter过滤器

1.Jetty嵌入到Spring项目 try { Server server = new Server(8080); WebAppContext context = new WebAppContext(); context.setContextPath("/test"); context.setDescriptor(filePath + "/conf/web.xml"); // 指定web.xml配置文件 context.setResourceBase(filePa