我有一个带注释的spring-mvc控制器,它为jsp-view提供了一些数据。
@RequestMapping(method = RequestMethod.GET)
public ModelAndView editor(){
ModelAndView model = new ModelAndView("editor");
model.addObject("profile", "default");
model.addObject("extString", "[]");
return model;
}
现在,在我之前使用经典http-servlet的应用程序中,我将其添加到了响应中:
response.setContentType("application/xhtml+xml");
Spring-MVC似乎在计划旧的HTML中提供内容。所以我的网络方面有市长问题。我没有在网上找到解决方案。 求救!
答案 0 :(得分:0)
在你的jsp上,你可以把这样的东西放在最上面:
<%@ page language="java" contentType="application/xhtml+xml; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>