Spring 控制器在 Tomcat 的一个实例中请求参数编码错误,但在其他实例中则不然

发布于 2024-12-17 12:55:43 字数 537 浏览 0 评论 0原文

我有一个 Spring MVC 应用程序,它在 eclipse (本地 tomcat 实例)和 tomcat 作为服务安装的测试环境中运行良好。但是,当我在生产中部署应用程序时,请求参数未正确解析(希腊字符)。

我在生产环境(以及本地和测试环境)中的 server.xml 配置文件在所有连接器元素上都有 URIEncoding="utf-8" 属性。

我已经在 web.xml 中设置了CharacterEncodingFilter。

我的 Jsp 页面具有所有

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

这些 Tomcat 实例之间还有

<%@page contentType="text/html" pageEncoding="UTF-8"%>

什么不同?

我唯一能想到的是 Windows 上的区域设置,但我希望这不会影响这一点?

I have a Spring MVC application which works fine in eclipse (local tomcat instance) and in a test environment where tomcat is installed as a service. But when I deploy the application in production the request parameters are not parsed correctly (Greek characters).

My server.xml configuration file in production (and in both local and test envirnonments) has the URIEncoding="utf-8" attribute on all connector elements.

I have set the CharacterEncodingFilter in web.xml.

My Jsp pages have all the

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

and

<%@page contentType="text/html" pageEncoding="UTF-8"%>

What else could be different between these Tomcat instances?

The only thing I can think off is the regional settings on windows but I hope this does not affect this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文