1. 程式人生 > >springMVC中出現http請求400錯誤問題

springMVC中出現http請求400錯誤問題

支付成功後,需要其他系統跳轉到我的成功頁面:我傳遞的回撥地址:http://aggrefront/cashier/qrResult?merchantNo=110047782&orderId=QR1111111113445367

但是系統重定向到我這邊時,直接報400錯誤


我程式入口程式碼:

public ModelAndView qrResult(String merchantNo, String orderId, String code,
String info,ModelAndView modelAndView) {

看到網上有說400 請求有可能是前臺請求資料格式不正確,或者說是請求方法與你後臺要求的方法不匹配,

參考:https://segmentfault.com/q/1010000004200647/a-1020000004200869

         https://zhidao.zhenbo.org/bwYhLLYdjWhZjcWZYYPjj

檢查測試了下:將後臺請求引數中,ModelAndView modelAndView 去掉就可以了