Spring MVC Controller アクションに次の文字列があります。コントローラーのアクションで、この次の文字列を受け取り、リダイレクトを行うビュー ページをレンダリングする必要がありました。
String redirectUrl = "http://www.yahoo.com"
私のコントローラーアクションは次のようになります。
@RequestMapping(method = RequestMethod.GET)
public String showForm(HttpServletRequest request, ModelMap model)
{
String redirectUrl = "http://www.yahoo.com";
model.addAttribute("redirectUrl", redirectUrl);
return "loginSuccess"; //this is my view JSP file
}
JSPビューでJSTLを使用せずにこのリダイレクトを行う方法はありますか? クリーンなリダイレクトが必要で、クエリ文字列パラメーターを送信しません。
ありがとう、