Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1011 Bytes

File metadata and controls

37 lines (28 loc) · 1011 Bytes

Spring Boot Starter for Thymeleaf 3

Spring boot starter for Thymeleaf 3

How to use

in your pom.xml, add following dependencies:

        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf</artifactId>
            <version>3.0.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf-spring4</artifactId>
            <version>3.0.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf3</artifactId>
            <version>1.0.0-SNAPSHOT</version>
        </dependency>

Changes

  • HTML5 converted to HTML automatically

Attention

  • Abstract Dialect compatible problem with Thymeleaf 3

References