- 添加mysql配置 - 添加数据连接池 - 添加mybatis配置 - 添加log配置 - 添加User实体类 - 添加UserMapper - 添加User测试
22 lines
548 B
HTML
22 lines
548 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Test Title</title>
|
|
</head>
|
|
<body>
|
|
<div id="welcome">
|
|
<h3>
|
|
欢迎使用 TEST HTML
|
|
<span th:text="${project}">- Powered By <span th:text="${author}"></span></span>
|
|
</h3>
|
|
|
|
<span style="text-align: center; padding: 10px">
|
|
<a style="text-decoration: none" href="#" th:href="@{${url}}" target="_blank">
|
|
<strong>Spring Boot入门首选</strong>
|
|
</a>
|
|
</span>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |