理解不透彻,还在摸索中,写下来自己看
一、创建maven-web项目
web.xml配置
webAppRootKey
spring.root
org.springframework.web.util.Log4jConfigListener
dispatcher
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring-mvc.xml
1
dispatcher
/
contextConfigLocation
classpath:spring-core.xml
org.springframework.web.context.ContextLoaderListener
CharacterEncodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
forceEncoding
true
CharacterEncodingFilter
/*
springSecurityFilterChain
org.springframework.web.filter.DelegatingFilterProxy
springSecurityFilterChain
/*
org.springframework.security.web.session.HttpSessionEventPublisher
index.jsp
mvc.xml
security.xml
springSecurity的登录验证是由org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter这个过滤器来完成的,在该类的父类AbstractAuthenticationProcessingFilter中有一个AuthenticationManager接口属性,验证工作主要是通过这个AuthenticationManager接口的实例来完成的。在默认情况下,springSecurity框架会把org.springframework.security.authentication.ProviderManager类的实例注入到该属性。
UsernamePasswordAuthenticationFilter的验证过程如下:
1. 首先过滤器会调用自身的attemptAuthentication方法,从request中取出authentication, authentication是在org.springframework.security.web.context.SecurityContextPersistenceFilter过滤器中通过捕获用户提交的登录表单中的内容生成的一个org.springframework.security.core.Authentication接口实例.
2. 拿到authentication对象后,过滤器会调用ProviderManager类的authenticate方法,并传入该对象
3.ProviderManager类的authenticate方法再调用自身的doAuthentication方法,在doAuthentication方法中会调用类中的List
4.AuthenticationProvider接口通过UserDetailsService来获取用户信息
需要用的类:user(用户) role(权限) userService userServiceImpl PwdAuthenticationProcessingFilter(过滤器)PwdAuthenticationToken
userServiceImpl
需要实现AuthenticationProvider接口,通过实现AuthenticationProvider接口实现类中的authenticate(Authentication authentication)方法进行验证,
boolean supports(Class extends Object> authentication) 方法来指定对哪个token进行操作,只有结果返回true才会执行authenticate(Authentication authentication)方法
Role要实现GrantedAuthority,GrantedAuthority接口中只有一个方法getAuthority,获取用户自定义的权限
user需要实现authentication,用来返回验证过后的用户(authentication)交给security验证权限;实现的方法,需要注意Collection
PwdAuthenticationProcessingFilter继承AbstractAuthenticationProcessingFilter。实现attemptAuthentication方法,来进行登录的验证;还需要创建类构造方法,调用父类的构造设置访问此filter的路径(action的路径);此外还可以重写父类的afterPropertiesSet方法,来自定义处理器,处理用户登录成功或失败后跳转到的页面
涉及到的其他类:
PwdAuthenticationToken,要自己创建一个token去继承AbstractAuthenticationToken,用来存取用户信息,该类主要用来,AbstractAuthenticationProcessingFilter的实现类调用this.getAuthenticationManager().authenticate(authentication)时传递给service进行验证
-----------------------------------------------------------------------------------------------------------
执行顺序:
用户未登录时,访问/home/*的路径时,页面会自动跳转到/portal/login页面,让用户进行登录操作。
输入登录信息提交后,根据action的访问路径来找相对应的filter中的构造方法设置的访问路径,如果一致则执行该filter中的attemptAuthentication方法,在方法中根据request获取到用户的信息存储到PwdAuthenticationToken中,然后调用this.getAuthenticationManager().authenticate(authentication),authentication传入的是PwdAuthenticationToken
这时候会根据在security.xml中
附各类的代码
user.java
public class User implements Authentication {
/**
*
*/
private static final long serialVersionUID = 1L;
private String name;
private String pwd;
private String loginName;
@Override
public String getName() {
return name;
}
//权限
private Set accesses;
/**
* 获取权限
*/
@Override
public Collection getAuthorities() {
return accesses;
}
@Override
public Object getCredentials() {
return null;
}
@Override
public Object getDetails() {
return null;
}
@Override
public Object getPrincipal() {
return this.loginName;
}
//判断是否验证
private boolean authenticated=false;
/**
* 是否已验证
*/
@Override
public boolean isAuthenticated() {
return this.authenticated;
}
@Override
public void setAuthenticated(boolean arg0) throws IllegalArgumentException {
this.authenticated=arg0;
}
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public Set getAccesses() {
return accesses;
}
public void setAccesses(Set accesses) {
this.accesses = accesses;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public void setName(String name) {
this.name = name;
}
}
public class Role implements GrantedAuthority{
private static final long serialVersionUID = 1L;
public static String PREFIX="ROLE_";
/**
* 获取权限
*/
@Override
public String getAuthority() {
return PREFIX+id;
}
/**
* 初始化用户权限
*@author baozhichao 2013-12-19下午5:46:36
* @return
*/
public static Role getRoleUser(){
Role ro = new Role();
ro.setId("USER");
ro.setName("普通用户");
return ro;
}
private String id;
private String name;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public class UserServiceImpl implements UserService,AuthenticationProvider {
@Override
public Authentication authenticate(Authentication auth)
throws AuthenticationException {
PwdAuthenticationToken token = (PwdAuthenticationToken)auth;
if(token.getUserName()!=null && token.getPassword()!=null){
if(!token.getUserName().equals("admin")){
token.setErrCode("1");
return null;
}
if(!token.getPassword().equals("123456")){
token.setErrCode("2");
return null;
}
User user = new User();
user.setName(token.getName());
user.setPwd(token.getPassword());
//认证成功
user.setAuthenticated(true);
/**写入权限*/
Role role = Role.getRoleUser();
System.out.println(role.getAuthority());
Set accesses = new HashSet();
accesses.add(role);
user.setAccesses(accesses);
return user;
}
return null;
}
@Override
public boolean supports(Class extends Object> authentication) {
return authentication.equals(PwdAuthenticationToken.class);
}
}
public class PwdAuthenticationToken extends AbstractAuthenticationToken{
public PwdAuthenticationToken() {
super(null);
}
private String userName;
private String idCode;
private String password;
private String errCode;
private static final long serialVersionUID = 1L;
@Override
public Object getCredentials() {
return this.idCode+"_"+this.userName;
}
@Override
public Object getPrincipal() {
return this.password;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getIdCode() {
return idCode;
}
public void setIdCode(String idCode) {
this.idCode = idCode;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getErrCode() {
return errCode;
}
public void setErrCode(String errCode) {
this.errCode = errCode;
}
}
pwdAuthenticationProcessingFilter.java
public class PwdAuthenticationProcessingFilter extends
AbstractAuthenticationProcessingFilter {
private String faildPage;
/**
* 必须要实现无参构造
* spring项目名称、loginCheck访问路径
*/
protected PwdAuthenticationProcessingFilter() {
super("/loginCheck");//设置访问路径
}
@Override
public Authentication attemptAuthentication(HttpServletRequest request,
HttpServletResponse response) throws AuthenticationException,
IOException, ServletException {
String id = request.getParameter("id");
String name = request.getParameter("user_name");
String pwd = request.getParameter("pass_word");
PwdAuthenticationToken token = new PwdAuthenticationToken();
token.setIdCode(id);
token.setUserName(name);
token.setPassword(pwd);
Authentication auth = null;
try {
auth = this.getAuthenticationManager().authenticate(token);
} catch (AuthenticationException e) {
e.printStackTrace();
}
return auth;
}
@Override
public void afterPropertiesSet() {
super.afterPropertiesSet();
AuthenticationFaildPage faild = new AuthenticationFaildPage();
faild.setFaildPage(faildPage);
this.setAuthenticationFailureHandler(faild);
}
public String getFaildPage() {
return faildPage;
}
public void setFaildPage(String faildPage) {
this.faildPage = faildPage;
}
}
import org.springframework.stereotype.Controller;
/**
*@author baozhichao
*2013-12-19 下午3:09:17
*/
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/portal")
public class LoginController {
@RequestMapping(method=RequestMethod.GET,value="/login")
public String login(){
return "login/login";
}
}