[Spring MVC] forwardのサンプル

2021年6月25日

1.同じクラスにリダイレクト

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@RequestMapping("/sampleA")
public String sampleA(){
return "forward:create";
}
@RequestMapping("/sampleA") public String sampleA(){ return "forward:create"; }
@RequestMapping("/sampleA")
public String sampleA(){
       return "forward:create";
}

2.別のクラスにリダイレクト

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@RequestMapping("/sampleB")
public String sampleB(){
return "forward:/user/update";
 }
@RequestMapping("/sampleB") public String sampleB(){ return "forward:/user/update";  }
@RequestMapping("/sampleB")
 public String sampleB(){
       return "forward:/user/update";
 }

 

SpringMVC

Posted by arkgame