spring-boot-starter-thymeleaf加载外部html文件
在Spring Boot项目中使用Thymeleaf加载外部HTML文件,你可以通过以下步骤实现:
- 在
pom.xml
中添加Thymeleaf依赖(如果尚未添加):
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 将你的外部HTML文件放在
src/main/resources/templates
目录下。 - 在Controller中指定要渲染的视图名称,并确保Thymeleaf配置能正确找到这个视图。
- 使用Thymeleaf的标准语法来引用外部HTML文件。
例如,假设你有一个名为external.html
的外部HTML文件,放在src/main/resources/templates
目录下:
<!-- src/main/resources/templates/external.html -->
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>External Content</title>
</head>
<body>
<h1>This is external content</h1>
</body>
</html>
然后,创建一个Controller来渲染这个视图:
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class MyController {
@GetMapping("/showExternal")
public String showExternal() {
return "external"; // 这里的"external"对应templates目录下的external.html文件名
}
}
最后,在你的HTML模板中使用Thymeleaf的th:replace
属性来引用外部HTML:
<!-- src/main/resources/templates/main.html -->
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Main Template</title>
</head>
<body>
<div th:replace="~{external.html}"></div>
</body>
</html>
当你访问/showExternal
时,main.html
中的th:replace
会将external.html
的内容插入到<div>
标签中。
评论已关闭