扩展 FilterDispatcher struts2
Posted
技术标签:
【中文标题】扩展 FilterDispatcher struts2【英文标题】:extending FilterDispatcher struts2 【发布时间】:2013-07-10 06:15:13 【问题描述】:在我的项目代码中,我可以看到 FilterDispatcher
被扩展以将默认编码设置为“UTF-8”。我的问题是我们可以做同样的任何其他更好的方法,或者这是最好的方法。
PS:最初的开发是在一个非英语 Windows PC 的国家/地区完成的。
【问题讨论】:
【参考方案1】:实际上有struts.i18n.encoding
常量用于设置默认语言环境和编码方案。可以在struts.properties
文件中设置:
struts.i18n.encoding=UTF-8
或在struts.xml
文件中:
<constant name="struts.i18n.encoding" value="UTF-8" />
顺便说一句:在 Struts2 中,struts.i18n.encoding
应该默认设置为 UTF-8
。
BTW no.2:FilterDispatcher
自 Struts 2.1.3 起已弃用。因此,如果您使用高于该版本的版本,请改用StrutsPrepareAndExecuteFilter
。
【讨论】:
项目使用Struts 2.0。所以实际上这是一种不必要的方法。非常感谢。以上是关于扩展 FilterDispatcher struts2的主要内容,如果未能解决你的问题,请参考以下文章