前端获取Spring-Security用户信息

方式1:在前端通过el表达式获取:

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

方式2:在前端通过使用security标签直接获取:

<%@ taglib uri="http://www.springframework.org/security/tags" prefix="security"%> 

IDEA会自动提示property为username,这样使用会报错,请自己加上“principal.”

你可能感兴趣的:(前端获取Spring-Security用户信息)