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

猜你喜欢

转载自j2ees.iteye.com/blog/2414111
今日推荐