Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.49 KB

README.adoc

File metadata and controls

33 lines (24 loc) · 1.49 KB

This repository is deprecated. Since 2.0.2 the starter is part of the official jte org. You can find the source code there. There is also a starter which is compatible with spring boot 3.

JTE Spring Boot Starter

jte is a secure and lightweight template engine for Java and Kotlin. All jte templates are compiled to Java class files, meaning jte adds essentially zero overhead to your application. jte is designed to introduce as few new keywords as possible and builds upon existing Java features, so that it is very easy to reason about what a template does. The IntelliJ plugin offers full completion and refactoring support for Java parts as well as for jte keywords. Supports Java 8 or higher.

license Apache%202.0 blue

Installation

Add following dependency to your pom.xml or build.gradle

<dependency>
      <groupId>io.github.atomfrede</groupId>
      <artifactId>jte-spring-boot-starter</artifactId>
      <versino>INSERT_LATEST_VERSION</version>
</dependency>
implementation: 'io.github.atomfrede:jte-spring-boot-starter:INSERT_LATEST_VERSION'

Usage