如果用户名在会话中不可用,则使用Thymeleaf会产生错误

时间:2017-03-27 12:44:44

标签: thymeleaf

如果会话包含username属性,如果属性username不在会话对象中,它将显示该值。它将给出错误org.thymeleaf.exceptions.TemplateProcessingException:评估SpringEL表达式的异常:

如果会话

中不存在用户名,如何解决错误或获取null
 <span>Hello</span>
 <span th:text="${session.username}" />

1 个答案:

答案 0 :(得分:0)

在显示之前评估您的用户名:

<span th:text="${session.username == null} ?: ''" />