spring-boot-starter-thymeleaf 代码报红
时间: 2023-06-26 19:04:26 浏览: 128
SpringBootWebApplication:使用 Thymeleaf 演示 Spring Boot Web 应用程序
可能是因为你的IDE没有正确识别Thymeleaf模板语言的语法,可以尝试以下解决方案:
1. 确认你的项目依赖中已经引入了Thymeleaf相关的依赖,比如spring-boot-starter-thymeleaf。
2. 如果你使用的是IntelliJ IDEA,可以在设置中开启Thymeleaf的语法高亮支持。具体操作为:打开IDEA的设置界面,搜索“Thymeleaf”,在“Thymeleaf”选项卡中勾选“Enable”选项即可。
3. 如果以上两种方法都无法解决问题,可以尝试重启IDE,或者重新导入项目依赖。
阅读全文