我正在使用 HTTP 连接器从独立的 Tomcat 7.0.35 服务器在单个 war 文件中提供一些静态 HTML 文件和一个 servlet。
我想通过设置 HTTP 响应标头来指定所有静态 HTML 文件的字符集Content-Type=text/html;charset=UTF-8
。
Tomcat 默认提供带有Content-Type=text/html
(无字符集部分)的 HTML 文件。
我按照以下说明操作:
http://wiki.apache.org/tomcat/FAQ/CharacterEncoding#Q8
但标题仍然包含Content-Type=text/html
没有;charset=UTF-8
我的 web.xml 转载如下。请注意,我尝试将 、 、 和 更改为,但url-pattern
这些都不起作用。/*
*
/index.html
index.html
仅供参考, /index.html 文件由 Tomcat 正确提供(除了缺少的;charset=UTF-8
)。/getData servlet 也正常工作,我已经成功地设置了 servlet 的Content-Type=text/html;charset=UTF-8
响应response.setContentType("application/json;charset=UTF-8");
。
谢谢你的帮助。
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<filter>
<filter-name>CharacterEncoding</filter-name>
<filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncoding</filter-name>
<url-pattern>/index.html</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>DataServlet</servlet-name>
<servlet-class>com.rcg.data.web.DataServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DataServlet</servlet-name>
<url-pattern>/getData</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
</web-app>