本文由 简悦 SimpRead 转码, 原文地址 blog.csdn.net
【GPT 存档】
在 Spring Boot 的 Controller 中跳转到 HTML 页面通常需要使用模板引擎来渲染 HTML 页面,并将其返回给浏览器。Spring Boot 支持多种模板引擎,比如 Thymeleaf、Freemarker、Velocity 等。下面以 Thymeleaf 为例来说明如何在 Controller 中跳转到 HTML 页面:
首先,确保你的 Spring Boot 项目中已经添加了 Thymeleaf 的依赖。在pom.xml中添加如下依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
然后,创建一个 Controller 类,在其中定义一个方法用于处理请求并返回 HTML 页面。例如:
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class MyController {
@GetMapping("/hello")
public String hello() {
return "hello"; // 这里的字符串"hello"是对应的HTML页面的文件名,比如hello.html
}
}
接着,在src/main/resources/templates目录下创建一个名为hello.html的 HTML 文件,该文件就是要返回的 HTML 页面。
在hello.html中,你可以使用 Thymeleaf 的语法进行页面渲染和数据绑定。例如:
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello Page</title>
</head>
<body>
<h1>Hello, Thymeleaf!</h1>
</body>
</html>
当用户访问/hello路径时,Spring Boot 将会调用MyController中的hello()方法,并返回hello.html页面给浏览器。
这就是在 Spring Boot 的 Controller 中使用 Thymeleaf 跳转到 HTML 页面的基本步骤。你也可以根据自己的需求选择其他模板引擎,并相应地调整配置和代码。
注意其他配置:
请确认你的application.properties或application.yml中已经正确配置了 Thymeleaf 模板引擎。示例配置如下:
application.properties:
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
application.yml:
spring:
thymeleaf:
prefix: classpath:/templates/
suffix: .html
接着,确保你的 Controller 方法返回的字符串与对应的 HTML 文件名匹配,并且不包含文件后缀。比如,如果你的 Controller 方法返回了"hello",那么对应的 HTML 文件应该是hello.html。
最后,检查你的 Controller 类是否位于 Spring Boot 应用程序的扫描路径中。确保MyController类在 Spring Boot 应用程序的组件扫描路径中,并且被正确扫描到。
如果你仍然遇到问题,请检查日志以查看是否有关于视图解析器或模板引擎配置的错误信息。根据错误信息调整配置或代码,直到问题解决。
感谢 GPT!! 菜鸟 coding 总是不对,i 人也不想老是问别人(关键是别人也没法帮我一点点扣代码)。。gpt 真是我的荣光 ·!