//使用redirect进行跳转
@RequestMapping("/redirect")
public String redirect(){
return "redirect:hello";
}
//使用forward跳转其他action
@RequestMapping("/forward")
public String redirect(){
return "forward:hello";
}
//使用redirect进行跳转
@RequestMapping("/redirect")
public String redirect(){
return "redirect:hello";
}
//使用forward跳转其他action
@RequestMapping("/forward")
public String redirect(){
return "forward:hello";
}
相关阅读
热门评论
不好使啊,能不能交流一下