lyh
2025-01-16 700ac5685214d37f128b3ad3dfda59e80381b9f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head lang="en">
<title>Spring Boot FreeMarker</title>
</head>
<body>
    Freemarker HTML <br><br>
    
    Sessionid: ${sessionid!}<br><br>
    
    <font>
        <#list userList as item>
            ${item!}<br />
        </#list>
    </font>
</body>
</html>