私はGoogleで検索されていますが、解決策を見つけることができませんので、春のフォワードがアンドロイドのapiで動作していないが、春のフォワードはアンドロイドの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のリクエストは、最初のハンドラメソッドから2番目のハンドラメソッドに転送されません。 –
私はこのURL http:// localhost:8080/SpringMVC /をWebブラウザーで押した後、フォワードが動作していますが、アンドロイドアプリから同じURLをヒットした場合、最初のハンドラーメソッドで前方に戻ります。 –