我有一个带注释的springmvc控制器,它为jsp视图提供了一些数据。
@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的形式提供内容。所以我的网页有一个市长的问题。我在网上没有找到解决方案。救命!
在您的jsp上,您可以在上面放一些类似的东西:
<%@ page language="java" contentType="application/xhtml+xml; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>