前端获取Spring-Security用户信息
2020-02-07 本文已影响0人
JayMeWangGL
方式1:在前端通过el表达式获取:
${sessionScope.SPRING_SECURITY_CONTEXT.authentication.principal.username}
方式2:在前端通过使用security标签直接获取:
<%@ taglib uri="http://www.springframework.org/security/tags" prefix="security"%>
<security:authentication property="principal.username"/>
IDEA会自动提示property为username,这样使用会报错,请自己加上“principal.”