我想使用SpringBoot和Thymeleaf。我创建了一个控制器,它看起来像这样:
我的控制器结构如下:
@Controller
public class AboutController {
@RequestMapping(value="/about" ,method=RequestMethod.GET)
public String about()
{
System.out.println("inside about");
return "about";
}
}
在pom.xml中具有依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
在about.html文件中
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Document</title>
</head>
<body>
<h1>Hi Thyme leaf Example</h1>
<h1 th: ></h1>
</body>
</html>
建议/自动完成功能未显示在:...
我正在使用
- JDK 1.8版本
- Spring Boot 2.4.2
- 百里香叶3.0
2条答案
按热度按时间c9x0cxw01#
我不认为这与Sping Boot 有任何关系,我认为您需要来自https://github.com/thymeleaf/thymeleaf-extras-eclipse-plugin的Thymeleaf Eclipse插件来完成。
ntjbwcob2#
右键单击项目图标----〉单击Maven ----〉更新项目----〉检查所有项目,如下图所示([1]:https://i.stack.imgur.com/S3Dnh.png)-----〉确定------〉等待项目更新。-----〉重新启动STS
如果仍然不工作后藤帮助----〉安装新软件----〉管理-----选择Thymeleaf ----〉重新加载-----〉应用并关闭-----〉重新启动STS