thymeleaf-spring
thymeleaf-spring copied to clipboard
Thymeleaf integration module for Spring
Hello, I've been upgraded spring boot version to 2.6.6, After that I am having a issue with template engine. It is throwing a **java.lang.ClassNotFoundException: ognl.DefaultMemberAccess** exception. Currently we are using...
Hello, this PR solves the issue mentioned in #24 . A custom expression parser can be used by setting the variable thymeleaf::ExpressionParser. Maybe someone can have a look at it...
Context ------- Spring Web MVC allows performing redirections by returning a String prefixed by `redirect://` in the controller. This String is intercepted by `ThymeleafViewResolver` which maps it to an instance...
I'm trying to pass a `ReactiveDataDriverContextVariable` multiple times to Thymeleaf. But I get the following error: ``` org.thymeleaf.exceptions.TemplateProcessingException: Only one data-driver variable is allowed to be specified as a model...
Bumps [spring-expression](https://github.com/spring-projects/spring-framework) from 5.0.8.RELEASE to 5.2.21.RELEASE. Release notes Sourced from spring-expression's releases. v5.2.21.RELEASE :star: New Features Remove DNS lookups during websocket connection initiation #28281 :lady_beetle: Bug Fixes Improve documentation and...
Templates that use custom dialect and expression object are broken since 3.0.14 when expression object's methods are called from unescaped [( )] block. This works in 3.0.13 and below. The...
Hi, Thymeleaf & thymeleaf-spring5 : 3.0.15.RELEASE Spring boot version : 2.5.13 Java : 8 I found that once a "Markup Selectors" can be injected with odd number of single quote,...
I tried to use thymeleaf in my project, but get the following exception: `java.lang.NoClassDefFoundError: ognl/PropertyAccessor` My versions copied from `mvn dependency:tree` ``` org.thymeleaf:thymeleaf-spring5:jar:3.0.11.RELEASE:compile \- org.thymeleaf:thymeleaf:jar:3.0.11.RELEASE:compile +- org.attoparser:attoparser:jar:2.0.5.RELEASE:compile \- org.unbescape:unbescape:jar:1.1.6.RELEASE:compile ```...
I would like to investigate adding some metrics to Thymeleaf. The Spring library already uses Micrometer so this won't introduce a new dependency. I'm primarily interested in recording which templates...
It would be great to make configurable (via an attr?) the extra hidden marker added before/after a `` when using `th:field="*{}"`. In certain cases, it is not necessary to mark...