日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

编写Thymeleaf视图以展示数据

發(fā)布時間:2025/4/5 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 编写Thymeleaf视图以展示数据 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

實驗結(jié)果

1.編寫控制器
新建一個MVC模式的控制器“HelloWorldMvcController”

package com.example.demo;import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; //MVC模式控制器 @Controllerpublic class HelloWorldMvcController {@RequestMapping("/helloworld")//輸入網(wǎng)頁路徑public String helloWorld(Model model) throws Exception{model.addAttribute("mav","Hello,Spring Boot我是MVC結(jié)構(gòu)");//視圖view的位置和名稱。視圖位于example文件夾下,視圖文件為hello.htmlreturn "example/hello";}}

2.添加Thymeleaf模板
在template 文件夾下新建文件夾"example",在example下新建hello.html文件

<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head><meta charset="UTF-8"><title th:text="${mav}">mav</title> </head> <body class="container"> <h1 th:text="${mav}">mav</h1> </body> </html>

3.添加依賴
在pom.xml中添加如下依賴

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>

4.啟動項目,然后訪問http://localhost:8080/helloworld可以看到網(wǎng)頁中顯示的內(nèi)容

總結(jié)

以上是生活随笔為你收集整理的编写Thymeleaf视图以展示数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。