HTML5 Validation Dialect - Installation

Maven + Spring users

  1. Add the dependence to the pom.xml

    <dependency>
    <groupId>net.sourceforge.html5valdialect</groupId>
    <artifactId>html5valdialect</artifactId>
    <version>2.0.0</version>
    </dependency>
    view raw pom.xml hosted with ❤ by GitHub

    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.

  2. 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>

Non-Maven and non-Spring users

  1. 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.

  2. Add the dialect to your Thymeleaf configuration:

    templateEngine.addDialect(new Html5ValDialect());


Back to home page