SSM框架整合Shiro
最近没事看同学用了shiro写了个教学管理系统,感觉权限还是很有用处的,按网上搭的基本用不了,要不就是除了基本的shiro还加了很多东西,就想着自己搭建一个简单的。
搭建的时候会出现登录验证后,获取权限时不调用doGetAuthorizationInfo方法,自己百度了下,现在弄好了贴出来看看。
注意:本文章不提供如何搭建SSM框架
下面是我搭建所使用的教程:
使用idea搭建SSM:https://www.cnblogs.com/hackyo/p/6646051.html
先建三个表:
按表建三个bean对象的代码我就不粘贴了。
t_permission:
t_user:
t_role:
代码块
web.xml:首先肯定先设置拦截滴。
<filter>
<filter-name>shiroFilter</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>shiroFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
spring-shiro.xml:
这里需要注意的是,如果你不是按楼上的SSM搭建的,注意web.xml里记得加载一下,因为我是这样加载spring前缀的文件,你们的spring配置文件名可能不一样。
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-*.xml</param-value>
</init-param>
没问题直接创建下面文件。注意我这登录密码是经过MD5加密的,数据库密码记得用MD5加密一下,或者直接把“定义凭证匹配器”去掉。
<?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: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/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager"/>
<property name="loginUrl" value="/toLogin"/><!--登录页面,-->
<property name="successUrl" value="/success"/><!--登录成功页面,如果自己设置了返回页面,则不跳转-->
<property name="unauthorizedUrl" value="/error"/><!-- 没有权限跳转的地址 -->
<property name="filterChainDefinitions">
<value>
/toLogin=anon <!--表示都可以访问-->
/error=authc
/test=anon
/login=anon
/home=perms[home] <!--perms表示需要该权限才能访问的页面-->
/admin=roles["admin"] <!-- roles["admin,user"] 只有拥有admin角色的用户才可访问,同时需要拥有多个角色的话,用引号引起来,中间用逗号隔开-->
<!--/admin=anon-->
/**=authc <!--authc表示需要认证才能访问的页面-->
</value>
</property>
</bean>
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<property name="realm" ref="MyRealm"/>
</bean>
<!-- 自定义Realm -->
<bean id="MyRealm" class="com.realm.MyRealm">
<!-- 定义凭证匹配器 -->
<property name="credentialsMatcher" ref="credentialsMatcher"></property>
</bean>
<!-- 凭证匹配器 org.apache.shiro.authc.credential.HashedCredentialsMatcher-->
<bean id="credentialsMatcher" class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
<!-- 加密算法名称 -->
<property name="hashAlgorithmName" value="MD5"></property>
<!-- 散列次数 -->
<!--<property name="hashIterations" value="2"></property>-->
</bean>
</beans>
pom.xml
除了SSM框架的再加上以下maven依赖。
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
<version>1.4.0</version>
</dependency>
login.jsp
登录成功后是跳转到success页面。
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="login" method="post">
<input type="text" name="username" />
<br>
<input type="password" name="password" />
<br>
<input type="submit" value="登录" />
</form>
</body>
</html>
succes.jsp:
其他页面我就不补了,我都是body里直接写了文件名,具体什么URL需要什么权限看shiro配置。
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
success <br>
<a href="logout">退出</a><br>
<a href="home">home</a><br>
<a href="error">error</a><br>
<a href="admin">admin</a><br>
</body>
</html>
MyRealm.java:
public class MyRealm extends AuthorizingRealm {
@Autowired
private PermissionService permissionService;
@Autowired
private UserService userService;
@Autowired
private RoleService roleService;
/**
* 授权查询回调函数, 进行鉴权但缓存中无用户的授权信息时调用.
*/
@Override
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
//获取登录时输入的用户名
String username = (String)principalCollection.getPrimaryPrincipal();
if(username!=null){
//获取用户信息
User user=userService.getUserByUsername(username);
//获取用户角色
List<Role> roles=roleService.getRoles(username);
//获取权限列表
List<String> permission=permissionService.getTheUrl(user.getId());
SimpleAuthorizationInfo info=new SimpleAuthorizationInfo();
if(permission!=null&&!permission.isEmpty()){
for(String url:permission){
info.addStringPermission(url);//加入权限
}
}
if(roles!=null&&!roles.isEmpty()){
for(Role role:roles){
info.addRole(role.getRole());//加入角色
}
}
return info;
}
return null;
}
/**
* 认证回调函数,登录时调用.
*/
@Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authenticationToken) throws AuthenticationException {
UsernamePasswordToken token=(UsernamePasswordToken)authenticationToken;
//通过表单接收的用户名
String username=token.getUsername();
System.out.println("username:"+username);
if(username!=null&&!"".equals(username)){
User user=userService.getUserByUsername(username);
if(user!=null){
return new SimpleAuthenticationInfo(user.getUsername(),user.getPassword(),getName());
}
}
System.out.println("认证失败");
return null;
}
}
loginController.java:
其他方法我就不补充了,都是跳转到页面的方法,无非用来登录后测试权限。
//实现用户登录
@RequestMapping(value = "/login")
public String Login(String username,String password,Model model){
UsernamePasswordToken token=new UsernamePasswordToken(username,password);
//token.setRememberMe(true);
Subject subject=SecurityUtils.getSubject();
String error=null;
try {
subject.login(token);
} catch (UnknownAccountException e) {
error = "用户名/密码错误";
} catch (IncorrectCredentialsException e) {
error = "用户名/密码错误";
} catch (AuthenticationException e) {
//其他错误,比如锁定,如果想单独处理请单独catch处理
error = "其他错误:" + e.getMessage();
}
System.out.println("error:"+error);
if(error != null) {//出错了,返回登录页面
model.addAttribute("error", error);
return "login";
} else {//登录成功
}
//登录成功后会跳转到successUrl配置的链接,不用管下面返回的链接
return "success";
}
*.mapper:
DAO都给出来了,自己反推下service和imp的方法吧。
<select id="selectUserByName" resultType="User">
SELECT * FROM t_user WHERE username=#{username};
</select>
<select id="getRoles" resultType="Role">
SELECT * FROM t_role WHERE username=#{username};
</select>
<select id="getTheUrl" resultType="string">
SELECT url FROM t_permission WHERE rid=#{rid};
</select>
=============================我是分割线===============================
//获取用户信息
User user=userService.getUserByUsername(username);
//获取用户角色
List<Role> roles=roleService.getRoles(username);
//获取权限列表
List<String> permission=permissionService.getTheUrl(user.getId());
也不知道有没漏什么,有问题的我再看看。