Add the dependence to the pom.xml
<dependency> | |
<groupId>net.sourceforge.html5valdialect</groupId> | |
<artifactId>html5valdialect</artifactId> | |
<version>2.0.0</version> | |
</dependency> |
Note that 2.0.x versions are compatible with Thymeleaf 2.0.x versions, while 2.1.x versions are compatible with Thymeleaf 2.1.x versions.
Add the dialect to your Thymeleaf configuration
<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine"> | |
<property name="templateResolver" ref="templateResolver" /> | |
<property name="dialects"> | |
<set> | |
<bean class="org.thymeleaf.spring3.dialect.SpringStandardDialect" /> | |
<bean class="net.sourceforge.html5val.Html5ValDialect" /> | |
</set> | |
</property> | |
</bean> |
Download the latest .jar from the HTML5ValDialect download page and add it to your classpath.
Note that 2.0.x versions are compatible with Thymeleaf 2.0.x versions, while 2.1.x versions are compatible with Thymeleaf 2.1.x versions.
Add the dialect to your Thymeleaf configuration:
templateEngine.addDialect(new Html5ValDialect()); |