`

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;
    }
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics