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

重定向求助?

想请教下springboot下不使用模板引擎怎么进行html页面重定向?(使用springboot默认的项目结构)

正在回答

1 回答

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

/**
 * @version 1.0 2017/1/17
 * @since 1.0
 */
@RestController
public class HelloController {

    @GetMapping(value = "/hello")
    @ResponseBody
    public ModelAndView say() {
        return new ModelAndView("redirect:http://www.imooc.com");
    }
}


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

zackma 提问者

谢谢老师,已解决
2017-01-21 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

重定向求助?

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