springboot restcontroller thymeleaf 页面跳转

thymeleaf 推荐使用 @Controller  进行页面跳转。

 

如果用@RestController 怎么进行页面跳转呢?

 

代码如下:

@RestController
@RequestMapping("rmsLogin")
public class RmsLoginController {

    @RequestMapping("login")
    public ModelAndView forwardLogin(){
        ModelAndView mv = new ModelAndView();
        mv.setViewName("rms/login");
        return mv;
    }
}

 

你可能感兴趣的:(spring,boot)