2 つの Spring MVC サービスがあるとします。
@RequestMapping(value = "/firstMethod/{param}", method = RequestMethod.GET)
public String firstMethod(@PathVariable String param) {
// ...
// somehow add a POST param
return "redirect:/secondMethod";
}
@RequestMapping(value = "/secondMethod", method = RequestMethod.POST)
public String secondMethod(@RequestParam String param) {
// ...
return "mypage";
}
最初のメソッド呼び出しを 2 番目の (POST) メソッドにリダイレクトできますか? 2 番目のメソッドを GET として使用するか、セッションを使用することは望ましくありません。
ご回答ありがとうございます。