此类问题主要为CAS系统与web项目对页面编码的设置不一致造成的。
解决方法如下:
1. 在CAS服务端的WEB-INF\web.xml中添加:
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>filters.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>ignore</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
下边为SetCharacterEncodingFilter代码:
package filters;
import java.io.IOException;
import javax.servlet.*;
public class SetCharacterEncodingFilter implements Filter {
public SetCharacterEncodingFilter() {
encoding = null;
filterConfig = null;
ignore = true;
}
public void destroy() {
encoding = null;
filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
if (ignore || request.getCharacterEncoding() == null) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
ignore = true;
else if (value.equalsIgnoreCase("true"))
ignore = true;
else if (value.equalsIgnoreCase("yes"))
ignore = true;
else
ignore = false;
}
protected String selectEncoding(ServletRequest request) {
return encoding;
}
protected String encoding;
protected FilterConfig filterConfig;
protected boolean ignore;
}
2. 修改
WEB-INF\view\jsp\protocol\2.0\casServiceValidationSuccess.jsp
在该文件页首添加<%@ page pageEncoding="GBK"%>。
这里对pageEncoding的赋值取决于CAS系统所管理的项目中对页面编码的设置。
例如,利用CAS对helper项目进行登录验证管理,Passport
(CAS服务端,负责对用户进行验证)中编码为“UTF-8”而helper中编码为“GBK”,casServiceValidationSuccess.jsp负责在CAS对用户验证成功后将用户信息转往helper/CAS/login.jsp页面,用户信息发送与接受处的编码不一致,导致在login.jsp上不能获得正确的中文信息(获得的均为问号)。因此应在casServiceValidationSuccess.jsp页面上添加<%@ page pageEncoding="GBK"%>,
从而与helper/CAS/login.jsp上的页面编码(GBK)设置相一致。
分享到:
相关推荐
单点登录的风险主要包括无人看守的桌面可能导致账户被盗用,以及针对CAS服务器的单点攻击,需要采取如定期更换凭证、限制无效尝试次数、使用SSL加密通信等安全措施来防范。 名词解释部分通常会列出如SSO、CAS、...
总的来说,SSO和CAS都是为了提升企业或组织内部网络环境的用户体验和安全性,通过集中式的身份验证管理,减少了用户的操作步骤,同时降低了因多账户管理带来的潜在安全问题。对于大型企业或机构来说,采用SSO和CAS...
ArcGIS 10中文版的试用版提供了大部分基础和进阶功能,包括但不限于: - 数据管理:导入、导出、编辑和管理各种地理数据格式。 - 地图制作:创建和编辑地图,支持多种图层和样式设置。 - 分析工具:提供空间分析、...
- 解决中文用户名在登录过程中可能出现的问题。 - **示例代码**: 配置字符编码以支持中文用户名。 **10. 判断用户是否登录** - 提供一种机制来判断当前用户是否已经登录。 - **示例代码**: 在Controller或...
这对于确保电视接收设备能稳定连接到网络,以及及时发现并解决网络问题至关重要。 4. **多帐号管理**:此特性意味着系统支持多个用户账户,每个账户可以有独立的设置和权限,如不同的频道订阅、个性化设置等,增强...
如果不使用 arc 参数,则 map 命令显示设备名称。 map 命令还显示文件系统的类型和每个磁盘的大小(MB)。 二。★★★常见文件扩展名和它们的说明 常见文件扩展名和它们的说明 A ACE:Ace压缩档案格式 ACT:...
英语单词的构造往往基于词根、词缀等基本元素,这些元素可以帮助我们理解并记忆复杂的词汇。以下是对一些常见词根和重要后缀的...在学习过程中,结合中文释义和老师的讲解,将能更有效地掌握和记忆这些词汇构建规则。