我一直在谷歌上搜索,但我找不到解決方案,所以請告訴我爲什麼春季前鋒不在android api工作,但在web api工作,所以如何解決它?春季前鋒不工作在android api
@Controller
@RequestMapping(value = "/")
public class LoginController {
@RequestMapping(method = {RequestMethod.GET,RequestMethod.POST,RequestMethod.HEAD})
public ModelAndView home(@ModelAttribute LoginInfo user, Model model,
HttpServletRequest request, HttpServletResponse response)throws Exception {
System.out.println("LoginController.user.userName: "+userName);
return new ModelAndView("forward:admin.html");
}
@RequestMapping(value = "/admin", method={RequestMethod.GET, RequestMethod.POST})
public ModelAndView successAdmin(@ModelAttribute LoginInfo user, Model model,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
System.out.println("admin.userName: "+userName);
return null;
}
}
我也使用return new ModelAndView(「forward:/admin.html」);但不會將請求轉發到/ admin處理程序方法。
可以顯示什麼是工作,什麼是不? – Simon
@Simon實際上請求不是從第一個處理程序方法轉發到第二個處理程序方法。 –
當我在web瀏覽器中打開這個url http:// localhost:8080/SpringMVC /時,然後返回前進正在工作,但是當我從android應用程序中的相同url中打開時,然後在第一個處理程序方法中返回向前不工作。 –