1. 程式人生 > >頁面獲取使用者資訊

頁面獲取使用者資訊

方式一:EL

在jsp頁面獲取使用者名稱,使用EL表示式:

${sessionScope.SPRING_SECURITY_CONTEXT.authentication.principal.username}

方式二:SpringSecurity標籤

使用SpringSecurity標籤獲取使用者名稱:

  1. 先引入標籤庫描述檔案
    <%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %>
  2. 使用標籤
<security:authentication property="principal.username" />