簡單使用:SpringBoot使用freemarker

使用步驟:html

a : 添加依賴spring

b: 建立模板文件 保存位置resources/templates 目錄下 文件後綴名.ftlspringboot

c 編寫controller 把結果傳遞給模板app

 

在resources.templates下建立user.ftl文件,內容以下spa

<html>
    <head>
        <title>springboot</title>
    </head>
    <body>
        <table border="1px">
            <thead>
                <tr>
                    <th>id</th>
                    <th>用戶名</th>
                    <th>密碼</th>
                    <th>姓名</th>
                </tr>
            </thead>
            <tbody>
                <#list users as user>
                    <tr>
                        <td>${user.id}</td>
                        <td>${user.username}</td>
                        <td>${user.password}</td>
                        <td>${user.name}</td>
                    </tr>
                </#list>
            </tbody>
        </table>
    </body>
</html>


dao層:
List<User> getAllUser();


Controller層:
@RequestMapping("/list")public String show(Model mode){    List<User> users = userDao.findAll();    mode.addAttribute("users",users);    return "user";}
相關文章
相關標籤/搜索