在JSP中得到java
使用spring security的标签库web
在页面中引入标签spring
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
而后
<div> username : <sec:authentication property="name"/></div>
便可显示当前用户。session
在程序中得到(方式一)app
UserDetails userDetails = (UserDetails) SecurityContextHolder.getContext().getAuthentication() .getPrincipal();加密
实际运用中发现得到的Authentication为null。仔细看了下源代码发现,若是想用上面的代码得到当前用户,必须在spring spa
security过滤器执行中执行,不然在过滤链执行完时org.springframework.security.web.context.SecurityContextPersistenceFilter类会code
调用SecurityContextHolder.clearContext();而把SecurityContextHolder清空,因此会获得null。对象
在程序中得到(方式二)blog
通过spring security认证后,security会把一个SecurityContextImpl对象存储到session中,此对象中有当前用户的各类资料
package com.devjav.spring; import java.util.List; import java.util.Locale; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.context.SecurityContextImpl; import org.springframework.security.web.authentication.WebAuthenticationDetails; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; /** * Handles requests for the application home page. */ @Controller public class HomeController { private static final Logger logger = LoggerFactory.getLogger(HomeController.class); /** * Simply selects the home view to render by returning its name. */ @RequestMapping(value = "/home.do", method = RequestMethod.GET) public String home(HttpServletRequest request, HttpServletResponse response, Locale locale) { logger.info("Welcome User home! The client locale is {}.", locale); /* * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ SecurityContextImpl securityContextImpl = (SecurityContextImpl) request.getSession() .getAttribute("SPRING_SECURITY_CONTEXT"); // 登陆名 System.out.println("Username:" + securityContextImpl.getAuthentication().getName()); // 登陆密码,未加密的 System.out.println("Credentials:" + securityContextImpl.getAuthentication().getCredentials()); WebAuthenticationDetails details = (WebAuthenticationDetails) securityContextImpl.getAuthentication() .getDetails(); // 得到访问地址 System.out.println("RemoteAddress" + details.getRemoteAddress()); // 得到sessionid System.out.println("SessionId" + details.getSessionId()); // 得到当前用户所拥有的权限 List<GrantedAuthority> authorities = (List<GrantedAuthority>) securityContextImpl.getAuthentication() .getAuthorities(); for (GrantedAuthority grantedAuthority : authorities) { System.out.println("Authority" + grantedAuthority.getAuthority()); } /* * ??????????????????????????????????????????????????????????????????? */ return "home"; } @RequestMapping(value = "/admin/home.do", method = RequestMethod.GET) public String Adminhome(Locale locale) { logger.info("Welcome to Admin home! The client locale is {}.", locale); return "adminhome"; } @RequestMapping(value = "/accessdenied.do", method = RequestMethod.GET) public String accessDenied() { logger.info("Access deniend."); return "accessdenied"; } }