I have a text to render in three different possible colors using thymeleaf.
So the code I've made so far to test the value is:
th:if="${evaluation} > 50"
th:if="${evaluation} < 30"
And that works well.
But the third test is for values between those two. So I tried:
th:if="(${evaluation} < 49) ∧ (${evaluation} > 29)"
but it's not working, I've got this error while parsing:
org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "(${evaluation} < 49) ∧ (${evaluation} > 29)" (/property.html:41)
Of course, these lines are between tags since the first two are working properly.
Maybe the and operand is not correct, but the documentation of thymeleaf is not really explicit on those operands.
All ideas are welcome!
Update: I got the answer from the thymeleaf forum. The way to do it is:
th:if="${evaluation < 49 and evaluation > 29}"
Problem solved!
Simple Conditionals: "if" and "unless" Thymeleaf provides th:if and th:unless conditional attributes to exclude elements based on a provided condition in the rendered document. Thymeleaf engine will evaluate the condition th:if="${user. active}" defined on the tr HTML element.
To achieve similar to if-else condition in Thymeleaf we can use th:switch attribute. Thymeleaf at the first step will evaluate ${condition} expression and if the value is true it will print p tag with TRUE text. When an evaluated value is different than the true the Thymeleaf engine will generate p element with FALSE.
Instead of using conditional operators && and || in the expression like we use in Java and Javascript, in Thymeleaf we use the text AND and OR for comparison.
You can compare values and expressions using the >, <, >= and <= Comparators. These operators behave the same way as they would behave in most of the programming languages.
I got the answer from the thymeleaf forum. The way to do it is :
th:if="${evaluation < 49 and evaluation > 29}"
Problem solved !
This is what worked for me:
th:if="${evaluation lt 49 and evaluation gt 29}"
In my opinion, a better and more maintainable solution could be to write the evaluation code in a proper class.
class Evaluator{
private int value;
....
public boolean isBounded() {
return value < 49 && value > 29;
}
then in thymeleaf, call the function:
<p th:if="${evaluator.isBounded()} ...
Some benefits:
I hope this helps.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With