Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个 tomcat 7.0.26 服务器,并将 REST 请求从第一个(带有休息插件的 grails 应用程序)发送到第二个(休息服务实现)。
我在第二个 tomcat 上遇到了非英文字母的编码问题(它们没有正确显示)。
如何将 UTF-8 编码设置为 REST 请求?如何在 REST 服务中过滤编码?你能给点建议吗?
在您进行其他基于呼叫的方法中,您可以执行
request.setCharacterEncoding("UTF-8") that should do it.
您可以拦截过滤器中的所有请求对象并设置UTF-8编码