HTTP Status 405

使用POST方法的时候,必须在jsp里指定Action,例如:

action="/项目名称/Register"

在控制器里同样要指定@RequestMapping,否则将找不到jsp文件,例如:

@RequestMapping(value = "/Register" ,method = RequestMethod.POST)
原文地址:https://www.cnblogs.com/tomato2014/p/8511812.html