spring boot整合thymeleaf无效(返回的是字符串,没有返回html页面)

spring boot引入thymeleaf想返回“test.html”,结果返回的是“test”字符串,如图:
spring boot整合thymeleaf无效(返回的是字符串,没有返回html页面)_第1张图片
spring boot整合thymeleaf无效(返回的是字符串,没有返回html页面)_第2张图片

这里把注解@RestController改成@Controller即可,@RestController会把所有接口以json形式返回。
spring boot整合thymeleaf无效(返回的是字符串,没有返回html页面)_第3张图片

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

附:RestController和@Controller区别:https://www.cnblogs.com/clwydjgs/p/9255046.html

你可能感兴趣的:(spring boot整合thymeleaf无效(返回的是字符串,没有返回html页面))