11 lines
247 B
HTML
11 lines
247 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>使用RestController返回页面信息</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h3>使用RestController返回页面信息</h3>
|
||
|
<h4 th:text="'消息:'+ ${message}"></h4>
|
||
|
</body>
|
||
|
</html>
|