2 回答

TA貢獻(xiàn)1943條經(jīng)驗(yàn) 獲得超7個(gè)贊
問題出在這里:
@Controller
public class ErrorController {
@RequestMapping("/error")
public String error(@RequestParam(value = "err", required = false) Integer paramErrorCode, Locale locale,
ModelMap model, HttpServletRequest httpRequest) {
// Do something
}
我有一個(gè)控制器,它處理錯(cuò)誤屏幕,但它只支持 GET 方法。當(dāng)我將其同時(shí)更改為 GET 和 POST 時(shí),它開始工作了。
解決方案:
@Controller
public class ErrorController {
@RequestMapping(value = "/error" method = {RequestMethod.GET, RequestMethod.POST})
public String error(@RequestParam(value = "err", required = false) Integer paramErrorCode, Locale locale,
ModelMap model, HttpServletRequest httpRequest) {
// Do something
}
如果web.xml不確定是什么導(dǎo)致重定向
<error-page>
<location>/error</location>
</error-page>
或 securitycontext.xml
<sec:access-denied-handler error-page="/error?err=403"/>

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊
METHOD_NOT_ALLOWED(405, "Method Not Allowed")
似乎您在測(cè)試時(shí)使用的是 GET 方法而不是 POST 方法,一旦您更改為 POSt 將獲得下一個(gè)異常是
UNAUTHORIZED(401, "Unauthorized")
添加回答
舉報(bào)