¿Cuál es la mejor manera de hacer un simple if- elseen Thymeleaf? Quiero lograr en Thymeleaf el mismo efecto que <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something...
¿Cuál es la mejor manera de hacer un simple if- elseen Thymeleaf? Quiero lograr en Thymeleaf el mismo efecto que <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something...
¿Puedo establecer el atributo data- * con thymeleaf? Como entendí de la documentación de thymeleaf intenté: <div th:data-el_id="${element.getId()}"> <!-- doesn't work --> <div data-th-el_id="${element.getId()}"> <!-- doesn't work
Tengo el siguiente código en uno de mis controladores: @Controller @RequestMapping("/preference") public class PreferenceController { @RequestMapping(method = RequestMethod.GET, produces = "text/html") public String preference() { return "preference"; } } Simplemente estoy tratando de...
Estoy usando Thymeleaf como motor de plantilla. ¿Cómo paso una variable del modelo Spring a la variable JavaScript? Lado del resorte: @RequestMapping(value = "message", method = RequestMethod.GET) public String messages(Model model) { model.addAttribute("message", "hello"); return...
Al usar Thymeleaf como motor de plantilla, ¿es posible agregar / eliminar dinámicamente una clase CSS a / desde un simple divcon la th:ifcláusula? Normalmente, podría usar la cláusula condicional de la siguiente manera: <a href="lorem-ipsum.html" th:if="${condition}">Lorem Ipsum</a>...