Spring 借助Thymeleaf實現表單繫結

2022-08-12 11:15:11 字數 1179 閱讀 7913

只要目標專一而不三心二意,持之以恆而不半途而廢,就一定能夠實現我們美好的理想。

使用thymeleaf將乙個表單繫結到th:object指定的物件上。

<

html

xmlns

=""xmlns:th

="">

<

head

>

<

title

>register

title

>

head

>

<

body

>

<

form

method

="post"

th:object

="$"

>

<

div

class

="errors"

th:if

="$"

>

<

ul>

<

li th:each

="err : $"

th:text

="$"

>input is incorrect

li>

ul>

div>

<

label

th:class

="$?'error'"

>

first name

label

>

<

input

type

="text"

th:field

="*"

th:class

="$?'error'"

/>

<

label

th:class

="$?'error'"

>

last name

label

>

<

input

type

="text"

th:field

="*"

th:class

="$?'error'"

/>

form

>

body

>

html

>

指定繫結物件的屬性。

springboot中整合thymeleaf模板

一 什麼是 thymeleaf?thymeleaf是一款用於渲染xml xhtml html5內容的模板引擎。類似jsp,velocity,freemaker等 也可以輕易的與spring mvc等web框架進行整合作為web應用的模板引擎。與其它模板引擎相比,thymeleaf最大的特點是能夠直接...

SpringBoot入門之Thymeleaf的使用

二 專案引入thymeleaf 這裡還是在上一springboot部落格的例子基礎上進行修改,這裡需要在pom.xml引入thymeleaf,這裡要注意一下,由於用的是spring5,如果引入的thymeleaf版本不正確就可能會報錯,而且不同的spring引入thymeleaf的artifacti...

SpringBoot入門之Thymeleaf的使用

二 專案引入thymeleaf 這裡還是在上一springboot部落格的例子基礎上進行修改,這裡需要在pom.xml引入thymeleaf,這裡要注意一下,由於用的是spring5,如果引入的thymeleaf版本不正確就可能會報錯,而且不同的spring引入thymeleaf的artifacti...