MVN

ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect

Maven & Gradle

Feb 25, 2017
15 stars

Thymeleaf Cache Dialect · A dialect for Thymeleaf that allows you to do partial page caching. Some parts of our webpage will never change during the lifetime of the application or a usersession, but the part should still be dynamic in the beginning. Working with Thymeleaf 3.0.0+ (3.0.0.RELEASE and its dependencies included)

<dependency>
    <groupId>ch.mfrey.thymeleaf.extras.cache</groupId>
    <artifactId>thymeleaf-cache-dialect</artifactId>
    <version>3.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 3.0.1

All Versions

Choose a version of ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
3.0.x
thymeleaf-cache-dialect-3.0.1
thymeleaf-cache-dialect-3.0.0
1.0.x
thymeleaf-cache-dialect-1.0.1
thymeleaf-cache-dialect-1.0.0

How to add a dependency to Maven

Add the following ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>ch.mfrey.thymeleaf.extras.cache</groupId>
    <artifactId>thymeleaf-cache-dialect</artifactId>
    <version>3.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect gradle dependency to your build.gradle file:

implementation 'ch.mfrey.thymeleaf.extras.cache:thymeleaf-cache-dialect:3.0.1'

Gradle Kotlin DSL: Add the following ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect gradle kotlin dependency to your build.gradle.kts file:

implementation("ch.mfrey.thymeleaf.extras.cache:thymeleaf-cache-dialect:3.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following ch.mfrey.thymeleaf.extras.cache : thymeleaf-cache-dialect sbt scala dependency to your build.sbt file:

libraryDependencies += "ch.mfrey.thymeleaf.extras.cache" % "thymeleaf-cache-dialect" % "3.0.1"