Springboot集成Thymeleaf中遇到的问题------不能返回页面,只返回字符串

Posted benniaoxianfei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot集成Thymeleaf中遇到的问题------不能返回页面,只返回字符串相关的知识,希望对你有一定的参考价值。

springboot集成thymeleaf中遇到的问题:
不能返回页面,只返回字符串

 

技术图片

 

原因:在controller中使用了注解@RestController 或者注解@ResponseBody

解决方法:用 @Controller 代替 @RestController;
不使用@ResponseBody注解。

以上是关于Springboot集成Thymeleaf中遇到的问题------不能返回页面,只返回字符串的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot——SpringBoot集成Thymeleaf

SpringBoot——SpringBoot集成Thymeleaf

SpringBoot系列集成thymeleaf详解版

SpringBoot系列集成thymeleaf详解版

SpringBoot系列之集成Thymeleaf用法手册

SpringBoot集成前端模版(thymeleaf)