Null safe expression in Thymeleaf
Using '?' after the variable in Thymeleaf expression, that variable will be null safe.
<td th:text="${user.department?.name}"></td>
For the avoid example, even variable department is null, the expression will still be fine.
Comments
Post a Comment