我是Spring Boot中的新成員,現在我們想用Spring Boot 2和Thymeleaf 3作爲模板引擎重寫Java中的舊PHP應用程序。Spring Boot和Thymeleaf的查看幫助器
我們的傳統應用程序擁有數百個包含數千個輸入字段的表單。爲此,我們使用一個簡單的模板助手,使得輸入字段,標籤和容器div非常簡單。一個小例子:
FormBuilder::addInputField("Close","close_time",$data->getClose_time());
生成:
<tr>
<th>Close:</th>
<td><input type="text" name="close_time" id="close_time_id" size="30" value=""> </td>
</tr>
我怎麼能在春天和Thymeleaf實現這一目標?
是的,我們使用Thymeleaf V3。 – Vmxes