10
Как сделать if-else в Тимелеафе?
Как лучше всего сделать простой if- elseв Тимелеафе? Я хочу добиться в Thymeleaf того же эффекта, что и <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something else</span> </c:otherwise> </c:choose> в JSTL. Что я понял до сих пор: <div th:with="condition=${potentially_complex_expression}" th:remove="tag"> <h2 th:if="${condition}">Hello!</h2> <span th:unless="${condition}" class="xxx">Something else</span> </div> Не хочу оценивать …
132
java
jsp
if-statement
jstl
thymeleaf