为了账号安全,请及时绑定邮箱和手机立即绑定

springboot+mysql+thymeleaf前端的具体该怎么写..只有后端操作额

这个结合thymeleaf具体该怎么写啊,满满的都是疑问。配合前端的话不是很会...

正在回答

3 回答

在pom.xml中添加一个依赖,

<dependency>

  <groupId>org.springframework.boot</groupId>

  <artifactId>spring-boot-starter-thymeleaf</artifactId>

</dependency>

Controller中一样的写法,

@RequestMapping("/hello/{name}")

public String hello(@PathVariable("name") String name,Model model){

model.addAttribute("name",name);

return "hello";

}

在maven项目的src/main/resources/templates下添加hello.html,写法如下:

<!DOCTYPE html>

<html xmlns:th="http://www.thymeleaf.org">

<head>

<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>

<title>Getting Started:Serving Web Content</title>

</head>

<body>

<p th:text = "'Hello, ' + ${name} + '!'"/>

</body>

</html>

注意1.xmlns:th="http://www.thymeleaf.org"要写上。

0 回复 有任何疑惑可以回复我~

我们项目就用thymeleaf,不过我还不怎么用

0 回复 有任何疑惑可以回复我~

我感觉你貌似是学习心切了,千万不要着急,一定要梳理清楚了。首先这门课主要是讲springboot,而springboot本身就是后端框架,重点当然是后端的Controller和DAO了。至于你说thymeleaf模板还是百度一下单独研究吧。当然我也没用过,就不给你更多帮助了。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151587    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

springboot+mysql+thymeleaf前端的具体该怎么写..只有后端操作额

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信