Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 986 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 986 Bytes

Build Status

spring-boot-starter-hdiv

A spring-boot starter that simplifies the usage of the Hdiv library.

You only have to add this library to your Spring Boot project and the Hdiv filter will be registered for you.

Maven Integration

Add one of the following dependency to your pom.xml file, depending on the view technology your project uses:

<dependency>
	<groupId>org.hdiv</groupId>
	<artifactId>spring-boot-starter-hdiv-thymeleaf</artifactId>
	<version>LATEST_VERSION</version>
	<type>pom</type>
</dependency>
<dependency>
	<groupId>org.hdiv</groupId>
	<artifactId>spring-boot-starter-hdiv-jsp</artifactId>
	<version>LATEST_VERSION</version>
	<type>pom</type>
</dependency>

Have a look at https://github.com/hdiv/spring-boot-sample-hdiv for a sample Spring Boot + HDIV application.