thymeleaf和Jsp或者HTML有什么区别

  1. 先上例子再来介绍吧,理论看多了容易晕

resources目录下的templates新建一个html文件
在这里插入图片描述
代码:注意html标签与jsp或者html的不同 自己加进去

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
</head>
<body>
<h1>这是你的thymeleaf页面</h1>
<span th:text="'你是:'+${key}">SB</span> 
<table>
    <tr>
      <th>NAME</th>
      <th>PRICE</th>
      <th>IN STOCK</th>
    </tr>
    <tr th:each="prod : ${comments}">
      <td th:text="${prod.name}">Onions</td>
      <td th:text="${prod.price}">2.41</td>
      <td th:text="${prod.age}">yes</td>
    </tr>
  </table>
</body>
</html>

build.gradle加入thymeleaf依赖

implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'

新建一个实体类

package com.comment.bean;
/***
 * 
 * <p>TODO评论实体类</p>
 *
 * <p>Copyright: 版权所有 (c) 2002 - 2008<br>
 *
 * @author ainy
 * @version 2019年2月15日
 */
public class Comment {
	private String name;
	private int age;
	private double price;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public double getPrice() {
		return price;
	}
	public void setPrice(double price) {
		this.price = price;
	}
	
}

新建一个controller

package com.comment.consumer;

import java.util.ArrayList;
import java.util.List;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import com.comment.bean.Comment;

@Controller
public class PageController {
	 @RequestMapping(value = "show", method = RequestMethod.GET)
	    public String show(Model model){
	        model.addAttribute("key","Jerry");
	        List<Comment> comments=new ArrayList<>();
	        Comment c1=new Comment();
	        c1.setAge(8);
	        c1.setName("李晓明");
	        c1.setPrice(99);
	        comments.add(c1);
	        Comment c2=new Comment();
	        c2.setAge(37);
	        c2.setName("王尼玛");
	        c2.setPrice(66);
	        comments.add(c2);
	        model.addAttribute("comments", comments);
	        return "hello.html";
	    }
}

启动入口类
直接访问网址 如图
在这里插入图片描述
再在文件夹中直接打开网页,也就是静态网页
在这里插入图片描述
效果:
在这里插入图片描述
比较打开静态页面和打开动态页面的区别
会发现静态页面展示标签中间的内容:
在这里插入图片描述
而动态打开展示的是后台传过来的数据,不再展示标签内的数据,这就很好的做到了前后端分离,和jsp大同小异,用SpringBoot的话就不要用jsp了,虽然可以用,但是官方不推荐

在Spring框架中,默认情况下,Spring Boot项目倾向于使用Thymeleaf作为视图模板引擎,它更现代且功能强大。然而,如果你需要将Thymeleaf替换为传统的JSP(JavaServer Pages),或者在已有的Spring项目中集成JSP,可以按照以下步骤操作: 1. **添加JSP支持**:确保你的Spring Boot项目已经添加了对Servlet和JSP的支持。在`pom.xml`文件中添加以下依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </dependency> ``` 或者如果你使用的是Maven老版本,可能需要单独添加servlet-api和jsp-api。 2. **配置视图解析器**:修改`application.properties`或`application.yml`文件,添加JSP视图解析路径,通常设置为`/WEB-INF/views`: ```properties spring.view.prefix=/WEB-INF/views/ spring.view.suffix=.jsp ``` 3. **创建JSP文件**:在指定的目录下创建JSP文件,并编写HTML代码,它们会替代Thymeleaf模板的位置。例如,一个基本的Thymeleaf模板可能会对应一个名为`index.html`的Thymeleaf文件,而在转换后应有一个名为`index.jsp`的JSP文件。 4. **跳转到JSP页面**:在Controller中返回JSP页面而不是Thymeleaf视图。例如: ```java @GetMapping("/") public String home() { return "redirect:/WEB-INF/views/index.jsp"; } ``` 5. **测试应用**:启动Spring Boot应用并访问URL,看是否能正确渲染JSP页面。 需要注意的是,虽然理论上可以在Spring项目中混合使用ThymeleafJSP,但这并不是推荐的做法,因为这会使代码结构变得复杂,维护起来困难。通常,我们会尽量保持整个项目的模板风格一致性。如果真的有特殊需求,建议考虑重构或者分离开来处理不同部分的视图层。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值