为了账号安全,请及时绑定邮箱和手机立即绑定

从一个请求里进入另一个请求如何实现啊 比如我想实现内部重定向跳转

@RequestMapping(value = "/welcom", method = RequestMethod.GET)
public String welcom(){
    return "redirect:/course";
}

@RequestMapping(value = "/course", method = RequestMethod.GET)
public ModelAndView echarts(){
    return new ModelAndView("course");
}


正在回答

1 回答

return "redirect:/xxxx";
是对的,只不过你要看一下/xxxx前面有没有控制层附加的路径

http://img1.sycdn.imooc.com//5a6875080001a76310270659.jpg

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

从一个请求里进入另一个请求如何实现啊 比如我想实现内部重定向跳转

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信