spring boot 前后端不分离项目
时间: 2023-09-04 11:07:59 浏览: 135
收藏了!7 个开源的 Spring Boot 前后端分离优质项目.docx
Spring Boot 是一个开源的 JavaEE 框架,可以快速构建 Web 应用程序和微服务。在 Spring Boot 中,前后端不分离的项目通常是使用模板引擎来渲染页面,后端将数据传递给模板引擎,然后模板引擎将数据填充到 HTML 页面中。
在 Spring Boot 中,常见的模板引擎包括 Thymeleaf、Freemarker、JSP 等。使用模板引擎,可以方便地将数据填充到 HTML 页面中,并实现动态页面的渲染。
下面是一个使用 Thymeleaf 模板引擎的 Spring Boot 示例:
1. 添加 Thymeleaf 依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 创建一个简单的控制器类:
```java
@Controller
public class HelloController {
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("name", "World");
return "hello";
}
}
```
3. 创建一个名为 hello.html 的模板文件:
```html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
<h1 th:text="'Hello, ' + ${name} + '!'"></h1>
</body>
</html>
```
4. 运行程序,访问 http://localhost:8080/hello,即可看到页面上显示了“Hello, World!”。
通过使用模板引擎,可以很方便地将数据填充到 HTML 页面中,实现动态页面的渲染。但是,使用模板引擎的前后端不分离项目开发效率低下,难以实现前后端分离、复用和可维护性。因此,在实际开发中,建议使用前后端分离的架构。
阅读全文