[solved] print value in textarea in thymeleaf
- Jewel Chowdhury
- Bugs
- Nov 02, 2021
Solution: Its very simple to print data in text-area using thymleaf tags.
<textarea name=”content” id=”editor” th:name=”body” th:field=”*{body}” rows=”10″ th:value=” ${publication.getBody}”>
Hope it helps…