Spring Boot - Thymeleaf

Thymeleaf是一个基于Java的库,用于创建Web应用程序.它为在Web应用程序中提供XHTML/HTML5提供了很好的支持.在本章中,您将详细了解Thymeleaf.

Thymeleaf模板

Thymeleaf将您的文件转换为格式良好的XML文件.它包含6种类型的模板,如下所示 :

  • XML

  • 有效XML

  • XHTML

  • 有效XHTML

  • HTML5

  • 旧版HTML5

除Legacy HTML5之外的所有模板都指的是格式正确的有效XML文件.旧版HTML5允许我们在网页中呈现HTML5标签,包括非封闭标签.

Web应用程序

您可以使用Thymeleaf模板创建Web Spring Boot中的应用程序.您必须按照以下步骤使用Thymeleaf在Spring Boot中创建Web应用程序.

使用以下代码创建@Controller类文件以将Request URI重定向到HTML文件 :

package com.it1352.demo.controller; 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class WebController {
   @RequestMapping(value = "/index")
   public String index() {
      return "index";
   }
}

在上面的例子中,请求URI是/index ,以及控件被重定向到index.html文件中.请注意,index.html文件应放在templates目录下,所有JS和CSS文件应放在classpath中的静态目录下.在显示的示例中,我们使用CSS文件来更改文本的颜色.

您可以使用以下代码并在单独的文件夹中创建CSS文件 css 并将文件命名为styles.css :

h4 {
   color: red;
}

index.html文件的代码低于 :

<!DOCTYPE html>
<html>
   <head>
      <meta charset = "ISO-8859-1" />
      <link href = "css/styles.css" rel = "stylesheet"/>
      <title>Spring Boot Application</title>
   </head>
   <body>
      <h4>Welcome to Thymeleaf Spring Boot web application</h4>
   </body>
</html>

项目浏览器显示在下面给出的屏幕截图中 :

Project Explorer截图

现在,我们需要在构建配置文件中添加Spring Boot Starter Thymeleaf依赖项.

Maven用户可以将以下依赖项添加到pom.xml文件中 :

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

Gradle用户可以在build.gradle文件中添加以下依赖项 :

compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'

主要Spring Boot的代码应用程序类文件在下面和下面给出;

package com.it1352.demo; 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {
   public static void main(String[] args) {
      SpringApplication.run(DemoApplication.class, args);
   }
}

Maven-pom.xml的代码在下面给出 :

<?xml version = "1.0" encoding = "UTF-8"?>
<project xmlns = "http://maven.apache.org/POM/4.0.0" 
   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0 
   http://maven.apache.org/xsd/maven-4.0.0.xsd">
   
   <modelVersion>4.0.0</modelVersion>
   <groupId>com.it1352</groupId>
   <artifactId>demo</artifactId>
   <version>0.0.1-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>demo</name>
   <description>Demo project for Spring Boot</description>

   <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>1.5.8.RELEASE</version>
      <relativePath />
   </parent>

   <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      <java.version>1.8</java.version>
   </properties>

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

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

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

   <build>
      <plugins>
         <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
         </plugin>
      </plugins>
   </build>
   
</project>

Gradle  -  build.gradle的代码在下面给出 :

buildscript {
   ext {
      springBootVersion = '1.5.8.RELEASE'
   }
   repositories {
      mavenCentral()
   }
   dependencies {
      classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
   }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

group = 'com.it1352'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
   mavenCentral()
}
dependencies {
   compile('org.springframework.boot:spring-boot-starter-web')
   compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
   testCompile('org.springframework.boot:spring-boot-starter-test')
}

你可以crea一个可执行的JAR文件,并使用以下Maven或Gradle命令运行spring boot应用程序 :

对于Maven,使用如下所示的命令 :

 
 mvn clean install

在"BUILD SUCCESS"之后,你可以找到下面的JAR文件目标目录.

对于Gradle,使用如下所示的命令 :

 
 gradle clean build

在"BUILD SUCCESSFUL"之后,您可以在build/libs目录下找到JAR文件.

运行JAR使用此处给出的命令文件 :

 
 java -jar <JARFILE>

现在,应用程序已在Tomcat端口8080上启动,如下所示 :

在Tomcat上启动应用程序Port_8080

现在点击Web浏览器中的URL,您可以看到输出显示 :

http://localhost:8080/index

 Spring Boot Thymleaf Web应用程序