使用Thymeleaf前端技术代替jsp修改html页面

1、首先给eclipse安装Thymeleaf插件

有两种方法:传送门1、传送门2。
第一种方法我没找到插件,第二种方法需要访问国外网址。

2、配置Thymeleaf

右键application.properties——》properties,改成utf-8编码(因为要打中文注释)
使用Thymeleaf前端技术代替jsp修改html页面_第1张图片
编辑application.properties,内容如下:

#thymeleaf编码
spring.thymeleaf.encoding=UTF-8
#热部署静态文件
spring.thymeleaf.cache=false
#使用HTML5标准
spring.thymeleaf.mode=HTML5

3、HTML引入Thymeleaf

把html标签替换成下面内容:

DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
	xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">

3、使用Thymeleaf语法小例子


<form action="" th:action="@{~/user/register}" method="post">
	
form>

你可能感兴趣的:(Java,spring,java)