我在 spring 3 mvc 中映射有问题。一般我必须“发送”值(@RequestMapping(value = "/*") 到我的返回语句。它是如何解决的?我在想这个:
@RequestMapping(value = "/*", method = RequestMethod.GET)
public String homeForm( Model model, HttpServletResponse response) throws IOException {
logger.info("Welcome ");
String url=response.getWriter().toString();
return url;
}
这是好的解决方案,也许有人有任何建议?塔克斯