Shiro加密验证,是通过自身的方式来进行验证的。有无加密和加密的两种验证方式。在密码的生成方面,我们可以通过
SimpleHash
来生成密码。
源码下载地址
https://gitee.com/yellowcong/shior-dmeo/tree/master/test
1、密码比对方式
Shiro中密码的比对,是由Shiro中的
AuthenticatingRealm.getCredentialsMatcher
的方法来进行比对的,我们只需要在AuthorizingRealm的继承类中,复写验证assertCredentialsMatch的方法,然后给他返回AuthenticationInfo就可以了
获取加密密码
在Solr中,给我们提供了S
impleHash
这个类,可以用来进行字符串的加密操作,在添加和测试的时候,可以写个工具类,来生成密码
package com.yellowcong.test;
import org.apache.shiro.crypto.hash.SimpleHash;
import org.apache.shiro.util.ByteSource;
/**
* 创建日期:2017年12月17日
* 创建时间:下午6:11:21
* 创建者 :yellowcong
* 机能概要:
*/
public class PassTest {
public static void main(String[] args) {
//加密方式
String algorithmName="MD5";
//加密的字符串
String source="doubi";
//盐值,用于和密码混合起来用
ByteSource salt = ByteSource.Util.bytes(source);
//加密的次数,可以进行多次的加密操作
int hashIterations = 1;
//通过SimpleHash 来进行加密操作
SimpleHash hash = new SimpleHash(algorithmName, source, salt, hashIterations);
System.out.println(hash.toString());
}
}
获取的结果
不加密的方式
直接简单一个Bean,不添加属性,就默认不进行加密验证了
<bean id="sampleRealm" class=" com.yellowcong.shior.realm.SampleRealm" />
MD5加密的方式
<!-- 授权 认证 ,自己定义的,领域(Realm),shiro需要配置一个领域(Realm),以便我们可以访问用户-->
<bean id="sampleRealm" class=" com.yellowcong.shior.realm.SampleRealm" >
<!-- 如果不加入密码匹配的操作,密码就不会存在 -->
<!-- 加入了密码匹配器之后,就会默认将前台传递过来的密码自动MD5加密 -->
<property name="credentialsMatcher">
<bean class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
<!-- 加密的方式 -->
<constructor-arg index="0" type="java.lang.String" value="MD5" />
<!-- 加密的次数,默认是1次 -->
<property name="hashIterations" value="1"/>
</bean>
</property>
</bean>
初始化HashedCredentialsMatcher,构造函数中传入加密方式
加密次数的属性
盐值加密
所谓的盐值加密,就是将密码里面加一点不一样的东西,让密码更加的复杂,但是加的这样东西,是唯一的,而且不重复的,在生产环境中,1、要么是用户名或邮箱作为盐值,2、自己在数据库存一个UUID类似的值,作为盐值
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken paramAuthenticationToken) throws AuthenticationException {
UsernamePasswordToken token = (UsernamePasswordToken) paramAuthenticationToken;
//数据库中,查询用户的信息
User user = userService.login(token.getUsername());
// token返回的是一个数组,将char类型转化为String类型
//这个是web前台传递过来的值
//这个密码的比对是通过Shiro自己给我们完成的
//密码是通过AuthenticatingRealm.getCredentialsMatcher 的方式来进行比对的
String pswDate = new String(token.getPassword());
//当用户为空的情况
if(user == null){
// 当没有用户的时候,抛出异常
throw new UnknownAccountException();
}
//第一个参数:用户名/用户对象
String username =token.getUsername();
//第二个参数:用户的密码
String password = user.getPassword();
//第三个参数:盐值(这个盐是 username)
ByteSource solt = ByteSource.Util.bytes(username);
//第四个参数:获取这个Realm的信息
String realmName =this.getName();
//他们拿到密码web的密码,同数据库获取到的密码进行比对操作
return new SimpleAuthenticationInfo(username, password, solt,realmName);
}
完整代码
目录结构
SampleRealm
package com.yellowcong.shior.realm;
import java.util.HashSet;
import java.util.Set;
import javax.annotation.Resource;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.AuthenticationInfo;
import org.apache.shiro.authc.AuthenticationToken;
import org.apache.shiro.authc.SimpleAuthenticationInfo;
import org.apache.shiro.authc.UnknownAccountException;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.authz.AuthorizationInfo;
import org.apache.shiro.authz.SimpleAuthorizationInfo;
import org.apache.shiro.realm.AuthorizingRealm;
import org.apache.shiro.subject.PrincipalCollection;
import org.apache.shiro.util.ByteSource;
import org.springframework.beans.factory.annotation.Autowired;
import com.yellowcong.model.User;
import com.yellowcong.service.UserService;
/**
* 创建日期:2017年9月23日 <br/>
* 创建用户:yellowcong <br/>
* 功能描述:用于授权操作
*/
public class SampleRealm extends AuthorizingRealm {
private UserService userService;
@Resource(name="userService")
public void setUserService(UserService userService) {
this.userService = userService;
}
/**
* 用户授权,当用户访问需要有权限的页面的情况,需要访问这个方法来获取权限列表
*/
@Override
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection paramPrincipalCollection) {
SimpleAuthorizationInfo info = new SimpleAuthorizationInfo();
// 根据用户ID查询角色(role),放入到Authorization里。
Set<String> roles = new HashSet<String>(); // 添加用户角色
roles.add("administrator");
info.setRoles(roles);
// 根据用户ID查询权限(permission),放入到Authorization里。
Set<String> permissions = new HashSet<String>(); // 添加权限
permissions.add("/role/**");
info.setStringPermissions(permissions);
return info;
}
/**
* 认证,用户登录
* 登陆的时候,会调用这个
*/
@Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken paramAuthenticationToken) throws AuthenticationException {
UsernamePasswordToken token = (UsernamePasswordToken) paramAuthenticationToken;
//数据库中,查询用户的信息
User user = userService.login(token.getUsername());
// token返回的是一个数组,将char类型转化为String类型
//这个是web前台传递过来的值
//这个密码的比对是通过Shiro自己给我们完成的
//密码是通过AuthenticatingRealm.getCredentialsMatcher 的方式来进行比对的
String pswDate = new String(token.getPassword());
//当用户为空的情况
if(user == null){
// 当没有用户的时候,抛出异常
throw new UnknownAccountException();
}
//第一个参数:用户名/用户对象
String username =token.getUsername();
//第二个参数:用户的密码
String password = user.getPassword();
//第三个参数:盐值(这个盐是 username)
ByteSource solt = ByteSource.Util.bytes(username);
//第四个参数:获取这个Realm的信息
String realmName =this.getName();
//他们拿到密码web的密码,同数据库获取到的密码进行比对操作
return new SimpleAuthenticationInfo(username, password, solt,realmName);
}
}
spring-shiro.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<description>== Shiro Components ==</description>
<!-- 会话Session ID生成器 -->
<bean id="sessionIdGenerator" class="org.apache.shiro.session.mgt.eis.JavaUuidSessionIdGenerator"/>
<!-- 安全管理器 -->
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<!--领域(Realm)-->
<property name="realm" ref="sampleRealm" />
<!-- 缓存管理器 -->
<property name="cacheManager" ref="cacheManager" />
</bean>
<!-- 授权 认证 ,自己定义的,领域(Realm),shiro需要配置一个领域(Realm),以便我们可以访问用户-->
<bean id="sampleRealm" class=" com.yellowcong.shior.realm.SampleRealm" >
<!-- 如果不加入密码匹配的操作,密码就不会存在 -->
<!-- 加入了密码匹配器之后,就会默认将前台传递过来的密码自动MD5加密 -->
<property name="credentialsMatcher">
<bean class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
<!-- 加密的方式 -->
<constructor-arg index="0" type="java.lang.String" value="MD5" />
<!-- 加密的次数,默认是1次 -->
<property name="hashIterations" value="1"/>
</bean>
</property>
</bean>
<!-- 给予shior的内存缓存系统 -->
<bean id="cacheManager" class="org.apache.shiro.cache.MemoryConstrainedCacheManager" />
<!-- Shior的过滤器配置 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<!-- 用户登录地址 -->
<property name="loginUrl" value="/user/login" />
<!-- 登录成功 -->
<property name="successUrl" value="/user/list" />
<!-- 未授权的钦奎光 -->
<property name="unauthorizedUrl" value="/user/error" />
<property name="filterChainDefinitions">
<value>
<!-- 设置访问用户list页面需要授权操作 -->
/user/list = authc
/user/error = anon
/users/user/login = anon
<!-- 配置js和img这些静态资源被任何人访问到 -->
/resources/img/** = anon
/resources/js/** = anon
</value>
</property>
</bean>
<!-- Shiro生命周期处理器-->
<bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor" />
<!-- AOP式方法级权限检查 -->
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"
depends-on="lifecycleBeanPostProcessor">
<property name="proxyTargetClass" value="true" />
</bean>
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager" />
</bean>
</beans>
控制层
package com.yellowcong.controller;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.subject.Subject;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.mvc.support.RedirectAttributesModelMap;
/**
* 创建日期:2017年9月23日 <br/>
* 创建用户:yellowcong <br/>
* 功能描述:用户控制成
*/
@Controller
@RequestMapping("/user")
@Scope("prototype")
public class UserController {
/**
* 跳转到登录页面
* 创建日期:2017年9月23日<br/>
* 创建用户:yellowcong<br/>
* 功能描述:
* @return
*/
@RequestMapping(value="/login",method=RequestMethod.GET)
public String loginInput(){
return "user/login";
}
/**
* 创建日期:2017年9月23日<br/>
* 创建用户:yellowcong<br/>
* 功能描述:用户登录操作
* @param username
* @param password
* @return
*/
@RequestMapping(value="/login",method=RequestMethod.POST)
public String login(String username,String password){
try {
Subject subject = SecurityUtils.getSubject();
if(subject.isAuthenticated()){
System.out.println("------------用户已经授权,已经登录-----------");
}
//用户登录
UsernamePasswordToken token = new UsernamePasswordToken(username,password);
//保存session
token.setRememberMe(true);
//登录用户
subject.login(token);
//redirect 方法返回的是
return "redirect:/user/list";
} catch (AuthenticationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return "user/login";
}
}
/**
* 退出系统
* @return
*/
@RequestMapping("/loginOut")
public String loginOut(){
//获取到Subject对象,然后退出
SecurityUtils.getSubject().logout();
return "redirect:/user/list";
}
@RequestMapping("/list")
public String list(){
return "user/list";
}
/**
* 错误跳转页面
* @return
*/
@RequestMapping("/error")
public String error(){
return "user/error";
}
}