我在Spring做项目。在支付网关中进行一些事务后,控件进入POST方法,但我需要GET方法,以便在html文件中显示。 以下是我的代码,其中控制在支付网关之后输入如下:
@RequestMapping(value="/receive",method={RequestMethod.POST})
public String afterPaymentReceive(HttpServletRequest request,@RequestParam(required=false) String eTransactionId,@RequestParam(required=false) String msg){
..................
..................
return "static/html/success";
}
我只有html文件的 viewResolver 。所以我需要显示success.html。
但是下面的错误显示在浏览器中。
HTTP Status 405 - Request method 'POST' not supported
type Status report message
Request method 'POST' not supported
description The specified HTTP method is not allowed for the requested resource.
任何解决此问题的方法。备选方式也热烈欢迎。先谢谢你们......