,可以通过以下步骤实现:
public class User {
private String username;
// 省略构造方法和其他属性的getter和setter方法
}
@Controller
public class UserController {
@GetMapping("/user")
public String getUser(Model model) {
User user = new User();
user.setUsername("John Doe"); // 假设用户名为John Doe
model.addAttribute("user", user);
return "user";
}
}
${}
来获取用户名并显示在页面上:<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>User</title>
</head>
<body>
<h1>Welcome, <span th:text="${user.username}"></span>!</h1>
</body>
</html>
在上述代码中,${user.username}
表示从模型中获取"user"属性的值,并将其显示在页面上。
application.properties
文件中添加以下配置:spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.html
这样,Spring将会将请求"/user"映射到UserController
中的getUser
方法,并返回"user.html"模板。
这样,当访问"/user"时,页面将显示"Welcome, John Doe!",其中"John Doe"是从控制器中传递的用户名。
领取专属 10元无门槛券
手把手带您无忧上云