Spring Boot与Thymeleaf整合失效

具体表现为:引入的thymeleaf 不返回html界面,返回一个字符串

在这里插入图片描述

原因:


Controller层使用的是@RestController

官方文档:
@RestController is a stereotype annotation that combines @ResponseBody and @Controller.
意思是:
@RestController注解相当于@ResponseBody + @Controller合在一起的作用。

如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,配置的视图解析器InternalResourceViewResolver不起作用, 返回的内容就是Return 里的内容

改为@Controller 后 正常。

在这里插入图片描述


版权声明:本文为caihongtangren原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。