学习日记--SpringBoot篇--return页面

为什么:使用SpringBoot集成thymeleaf不能返回页面,只能返回zifuch字符串。

原因:请检查你是不是在controller使用了@RestController注解。

解决方法:1.修改注解为@Controller   2.在方法体中使用ModelAndView。

分析:RestController = Controller + Response ,所以返回的内容为字符串。

学习日记--SpringBoot篇--return页面_第1张图片

学习日记--SpringBoot篇--return页面_第2张图片

你可能感兴趣的:(页面跳转,springboot,页面跳转)