SpringMVC中整合Velocity中文输出乱码

发布于 2021-11-14 15:54:52 字数 244 浏览 788 评论 5

各位好呀,我配置了Velocity,但输出的都是?问号。但在Spring中的Controller添加了HttpSevletResponse参数,然后用response.getWriter().write("")这时中文才显示正常,为什么的?还有别的方法吗?请问你是怎样解决的?上网查了很多方法试过都没效呀。弄了好几天啦。

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

无法言说的痛 2021-11-19 20:59:12

还有需要input.encoding output.encoding 为utf-8

旧城烟雨 2021-11-19 20:31:03

还有一个办法,就是写一个AOP,@AfterReturning("@annotation(org.springframework.web.bind.annotation.RequestMapping) && (args(response,..) || args(..,response))"):针对所有的RequestMapping注释进行AOP。

狠疯拽 2021-11-19 16:27:45

就像这样:

@RequestMapping(value="/getVelo.html")
public ModelAndView getVelos(HttpServletResponse response) throws IOException
{
ModelAndView mav = new ModelAndView();
mav.setViewName("velo");
mav.addObject("name", "杨志永");
response.getWriter().write("");
return mav;
}
添加了response.getWriter().write("");就会显示正常。如果没有中文就会显示成?问号。

冷默言语 2021-11-18 11:09:05

也设置了。

牵你的手,一向走下去 2021-11-15 06:41:20

VelocityViewResolver中配置

<property name="contentType">
   <value>text/html;charset=UTF-8</value>
  </property>

 

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文