写一个springboot使用thymeleaf显示html页面的例子
时间: 2024-04-18 11:29:45 浏览: 174
当然!以下是一个使用Spring Boot和Thymeleaf显示HTML页面的示例:
首先,确保你已经添加了Spring Boot和Thymeleaf的依赖项。在你的`pom.xml`文件中添加以下内容:
```xml
<!-- Spring Boot依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Thymeleaf依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
接下来,创建一个简单的控制器类,在该类中定义一个处理请求的方法,将要显示的HTML页面返回给客户端:
```java
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "home";
}
}
```
在上述代码中,`@Controller`注解将该类标记为控制器,`@GetMapping("/")`注解指定了处理根路径请求的方法。在该方法中,我们使用`Model`对象将一个名为"message"的属性添加到模型中,并将其值设置为"Hello, Thymeleaf!"。最后,我们返回字符串"home"作为视图名称。
接下来,创建一个名为`home.html`的HTML模板文件,并将其放置在`src/main/resources/templates`目录下:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Home</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
```
在上述代码中,我们使用Thymeleaf的语法将`message`属性的值显示在`<h1>`标签中。
最后,运行你的Spring Boot应用程序,并访问根路径(例如:http://localhost:8080/)。你应该能够看到页面上显示着"Hello, Thymeleaf!"的消息。
希望这个例子能帮助到你!如果你有任何进一步的问题,请随时问我。
阅读全文