呼び出されたときに別の URL にリダイレクトする URL があります。リダイレクトとともにいくつかのデータを渡したいと思います。
たとえば、私はこの方法を持っています:
@RequestMapping("efetuaEnvioEmail")
public String efetuaEnvioEmail(HttpServletResponse response) throws IOException {
System.out.println("efetuaEnvioEmail");
return "redirect:inicio";
}
これにリダイレクトするもの:
@RequestMapping("inicio")
public String Inicio(HttpServletRequest request) throws IOException {
return "Inicio";
}
最初のメソッドですべてがうまくいったことを知らせるデータを渡したいと思います。
HttpServletRequest と HttpServletResponse のいくつかのメソッドを試しましたが、何もできませんでした。