springboot 之thymeleaf 与 freemarker的简单使用

本文介绍了SpringBoot不推荐使用jsp开发,企业开发主要使用Thymeleaf和Freemarker两种模板技术。Thymeleaf基于.html进行页面拿值、取值、遍历和后台传值操作;而Freemarker则在application.yml配置,支持页面拿值、取值、遍历、全局变量和页面包含。在IDEA中,可以通过设置添加Freemarker支持。
摘要由CSDN通过智能技术生成

springboot不推荐使用jsp开发

那么企业的开发主要分为两种

1.thymeleaf模板(主要基于.html的开发

页面拿值

<!--页面拿值-->
<h3 th:text="${name}"></h3>

页面取值

<!--页面取值-->
<select name="hobby">
    <option th:each="user :${UserList}" th:text="${user.userName}" th:value="${user.id}"> </option>
</select>

页面遍历

<!--table表格的遍历-->
<table border="2" width="600px" th:height="20px" height="600px">
    <thead>
    <tr>
        <td>Id</td>
        <td>name</td>
        <td>distribution</td>
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值