spring boot模板對映

2021-09-29 15:00:58 字數 2022 閱讀 1728

寫小專案的時候vue就顯的很複雜,可以用對映模板簡單代替。

後端 把資料對映到模板上

//返回模板查詢

("getall"

)public string getall

(model model)

//呼叫方法

//return "redirect:/user/getall";

前端 接受模板並輸出 —>返回集合

// userstat 是為了輸出幾條資料 

"user,userstat: $"

>

"$">

<

/td>

"$">

<

/td>

"$">

<

/td>

"$">

<

/td>

"$">

<

/td>

"@)}"

>修改<

/a>

/"@)}"

>刪除<

/a>

<

/td>

<

/tr>

前端 接受模板並輸出 —>返回單條(修改**)

"/user/insert" method=

"post" th:each=

"user:$"

>

"text" name=

"uid" th:each=

"user:$" th:value=

"$">

>

姓名:"text" name=

"name" th:value=

"$"/

>

>

性別:"radio" name=

"***" id=

"***1" value=

"男" th:checked=

"$"/

>男"radio" value=

"女" id=

"***2" name=

"***" th:checked=

"$"/

>女

>

愛好:"checkbox" name=

"box" value=

"足球" th:checked=

"$"/

>足球

"checkbox" name=

"box" value=

"藍球" th:checked=

"$"/

>藍球

"checkbox" name=

"box" value=

"飛球" th:checked=

"$"/

>飛球

>

班級:"ban" id=

"ban"

>

"bb"

th:each=

"list: $"

th:text=

"$"

th:value=

"$"

th:selected=

"$">

<

/option>

<

/select>

>

後端

//修改頁面

自增:

//loopstatus 也可以換上上面stat

"控制器名,loopstatus: $"

>

"$">

<

/td>

count:自增從1開始

index:自增從0開始

size: 統計有幾條資料

複選內框預設: th:checked="$

SpringBoot 路徑對映

在spring boot中整合thymeleaf後,我們知道thymeleaf的預設的html的路徑為classpath templates也就是resources templates,那如何訪問這個路徑下面的靜態頁面呢?假設我們要訪問乙個頁面為hello.html。spring.thymeleaf...

springboot訪問對映 RESTful

spring boot專欄 主目錄rest風格 問題在controller.hellocontroller.class類中 需要在類名標明 controller public string index 注意 如果在控制器類controller.hellocontroller.class中以 1.配置...

springboot靜態資源對映

1 webjars springboot中以jar包形式引入的靜態資源 所有 webjars 都去classpath meta inf resources webjars 找資源 webjars官網 匯入靜態資源後,資源訪問路徑為 如圖所示 訪問jquery.js的路徑為 localhost 808...