如果会话包含username属性,如果属性username不在会话对象中,它将显示该值。它将给出错误org.thymeleaf.exceptions.TemplateProcessingException:评估SpringEL表达式的异常:
如果会话
中不存在用户名,如何解决错误或获取null <span>Hello</span>
<span th:text="${session.username}" />
答案 0 :(得分:0)
在显示之前评估您的用户名:
<span th:text="${session.username == null} ?: ''" />