javaweb学习day5--《HTML篇》Springboot的模块创建、HTML的相关知识点详解
在Spring Boot中创建模块的步骤通常包括以下几个步骤:
- 使用Spring Initializr(https://start.spring.io/)快速生成项目骨架。
- 解压或下载的项目可以导入到IDE中(如IntelliJ IDEA、Eclipse等)。
- 在
pom.xml
中添加spring-boot-starter-web
依赖,用于支持Web开发。 - 创建一个Controller类,编写相关的HTTP请求处理逻辑。
- 运行Application类的
main
方法或使用IDE的运行按钮启动应用。
以下是一个简单的Controller示例,它提供了一个返回HTML页面的端点:
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HtmlController {
@GetMapping("/greeting")
public String greeting() {
return "greeting"; // 对应src/main/resources/templates/greeting.html
}
}
在src/main/resources/templates
目录下创建greeting.html
文件,并编写以下内容:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Greeting Page</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
确保已经在application.properties
或application.yml
中正确配置了Thymeleaf(或其他模板引擎)的相关配置。
运行应用程序后,访问http://localhost:8080/greeting
将展示HTML页面。
评论已关闭