springboot restcontroller thymeleaf 页面跳转 博客分类: spring boot springbootrestcontrollerthymeleaf
程序员文章站
2024-03-17 13:00:22
...
thymeleaf 推荐使用 @Controller 进行页面跳转。
如果用@RestController 怎么进行页面跳转呢?
代码如下:
@RestController @RequestMapping("rmsLogin") public class RmsLoginController { @RequestMapping("login") public ModelAndView forwardLogin(){ ModelAndView mv = new ModelAndView(); mv.setViewName("rms/login"); return mv; } }