Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Thymeleaf - Strict HTML parsing issue

Tags:

HTML5 allows some tags to be written more liberally i.e without corresponding END tags. e.g. input need not be closed </input>.However if choose template mode HTML5 in Thymeleaf the Thymeleaf engine complains about this and does not parse the HTML template. I want to override this default Strict tag checking behavior. i.e Thymeleaf should parse an HTML template with meta and input (AND ALIKE) tags WITHOUT THEIR RESP. CLOSING TAGS. Pl. guide.

It also complains when you have something like this

<a href="/home/pic/image.png" download="/path/to/file" data-gallery></a> 

It throws an exception when it encounters the data-gallery throws "should be followed by '=' " which is kind of annoying as it takes the flexibility out of HTML5.

like image 622
Mushtaq Jameel Avatar asked Feb 20 '15 08:02

Mushtaq Jameel


2 Answers

All you have to do is run Thymeleaf in "LEGACYHTML5" mode and it works like a charm. Thanks to this and this post, I found the solution and am documenting in SO so others do not have to go through the same trouble in finding this answer.

To set the legacy mode you can define the bean in your Spring XML file:

<!-- View TemplateResolver --> <bean id="templateResolver" class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">     <property name="templateMode" value="LEGACYHTML5"/>     <property name="cacheable" value="false"/> </bean> 

or add the properties to the application.properties file:

spring.thymeleaf.mode=LEGACYHTML5 spring.thymeleaf.cache=false 

And in both cases you have to add the nekohtml jar to your project or, if you are running maven, you can add its dependency to your pom.xml

<dependency>      <groupId>net.sourceforge.nekohtml</groupId>      <artifactId>nekohtml</artifactId>      <version>1.9.21</version>  </dependency> 

Gradle

'net.sourceforge.nekohtml:nekohtml:1.9.21' 
like image 162
Mushtaq Jameel Avatar answered Sep 20 '22 08:09

Mushtaq Jameel


Here is how you can do it in a neat way

Step 1: Add thymeleaf mode to your application.properties file.

resources/application.properties

spring.thymeleaf.mode=LEGACYHTML5 

Step 2: Add nekohtml dependency to your pom.xml file.

pom.xml

<dependency>     <groupId>net.sourceforge.nekohtml</groupId>     <artifactId>nekohtml</artifactId> </dependency> 
like image 30
VK321 Avatar answered Sep 22 '22 08:09

VK321