我對Spring MVC RequestMapping註解有個疑問。需要你的幫助。Spring @RequestMapping
我已經創建了一個IPSLcontroller,我希望IPSLcontroller處理所有的請求url.i在這個控制器中創建了兩個方法。
1)handleLogoutRequest: - 這個方法應該調用下面的url。
2)handleRequest: - 此方法應該在所有請求url上調用,而不是註銷。
http://localhost:9086/webapp/login 或 http://localhost:9086/webapp/add 或 http://localhost:9086/webapp/remove
這裏是我的示例代碼。但它沒有按預期工作。
@Controller
public class IPSLController {
@RequestMapping(value={"/logout/*"},method = RequestMethod.POST)
protected void handleLogoutRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
System.out
.println("........................IPSLController logout request.......................................");
}
@RequestMapping(method = RequestMethod.POST,value={"/*"})
protected void handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
System.out
.println("........................IPSLController all request Post.......................................");
}
}
而你的問題是什麼? –
「不按預期工作」是什麼意思? –
我正在尋找正確的映射值。上面的代碼沒有按預期工作。註銷請求也來到handleRequest方法。 – Ankur