假设我有 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";
}
可以将第一个方法调用重定向到第二个(POST)方法吗?使用第二种方法作为 GET 或使用会话是不可取的。
感谢您的回复!