美文网首页
405 Request method 'POST' not su

405 Request method 'POST' not su

作者: shaliwashaliwa | 来源:发表于2017-07-12 10:23 被阅读0次

@RestController
@RequestMapping(value="/login", method = RequestMethod.POST)
public ModelAndView greeting() {
return new ModelAndView("pages/homepage.html");
}
springmvc注解都配好了,方法可以进入,但报405
原因:
post方法不支持直接返回页面,需要重定向,将返回ModelAndView改为ModelAndView("redirect:pages/homepage.html");

相关文章

网友评论

      本文标题:405 Request method 'POST' not su

      本文链接:https://www.haomeiwen.com/subject/aynvhxtx.html