1
我在使用Spring解析URL時遇到問題。 我的終點是春天 - 查詢參數沒有問號
@RequestMapping(path = "/register", method = RequestMethod.GET)
public String userActivation(@RequestParam("token") String token, @RequestParam("code") String code, final Map<String, Object> model) {
...
}
所以我期待一個token
和URL中的code
。
我現在面臨的問題是,重定向到我的網頁服務省略了問號,這樣的:
http://myapp/register/&token=sdgddfs&code=fdasgas
Spring的不匹配我的終點。
有什麼辦法可以解決這個問題嗎?
的註釋,這是什麼服務,真實重定向到你的頁面你可以重新寫你的方法?似乎問題在那裏tbh – Plog
不幸的是,我沒有辦法改變該服務的重定向網址。業主堅持要求是合法的。 – algiogia