MP实战系列(九)之集成Shiro
下面示例是在之前的基础上进行的,大家如果有什么不明白的可以参考MP实战系列的前八章
当然,同时也可以参考MyBatis Plus官方教程
建议如果参考如下教程,使用的技术为spring+mybatis plus + springmvc+jdk8+maven工程
满足这个条件可以减少不必要的麻烦,当然持久层也可以用mybatis。
只要按照如下示例来,也不会有大问题的。之前我也强调过mybatis和mybatis plus的区别主要是封装和继承,mybatis plus封装一系列增删改查的方法,但是这些封装方法都是靠继承。而mybatis的代码生成器就得逆向工程,当然,也可以通过这种方式,使用volocity或freemarker模板引擎,编写对应的模板(含xml,entity,service,serviceImpl,controller等),这种模板引擎的机制也涉及到Java的反射。
关于shiro教程,可以参考官网,也可以参考我的shiro实战系列,我的shiro实战系列主要参考张开涛先生的文档和github相关的教程
文档的话,大家可以参考:Java相关框架资料及其基础资料、进阶资料、测试资料之分享
通过该篇文章获取资料,包含视频等相关资料
张开涛先生的github系列地址如下:
https://github.com/zhangkaitao/shiro-example
张开涛先生的shiro博客文章系列地址如下:
http://jinnianshilongnian.iteye.com/blog/2049092
上述列出的,可以作为朋友们的学习参考,当然技术每时每刻不在更新,但是底层原理却是不变的。
关于shiro和Java流行框架(Spring+SpringMVC+MyBatis或SpringBoot等案例)
大家可以去github上找,或者直接去码云上借鉴。
码云上的案例都还不错,感谢开源并乐于分享的程序爱好者们。
至于博客文章,几年前的和现在的shiro相关案例,大家都可以参考借鉴。
为了不做拿来主义,我觉得有必要分享分享,即便相关的案例比较多,但是每篇博文我想都从不同的角度看待shiro。
俗话说:对于哈姆莱特,一千个读者有一千个体会。
至于原话是否如此,我也懒得百度搜索了,总而言之每个编程爱好者们对于技术,都有自己的视角。
一、导入依赖
<!-- shiro -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<version>1.2.2</version>
</dependency>
二、自定义Realm
package com.shiro; 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.UsernamePasswordToken;
import org.apache.shiro.authc.credential.HashedCredentialsMatcher;
import org.apache.shiro.authz.AuthorizationInfo;
import org.apache.shiro.authz.SimpleAuthorizationInfo;
import org.apache.shiro.authz.UnauthenticatedException;
import org.apache.shiro.realm.AuthorizingRealm;
import org.apache.shiro.subject.PrincipalCollection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean; import com.dao.UserDao;
import com.entity.UserEntity; public class MyRealm extends AuthorizingRealm { @Autowired
private UserDao userDao; /**
* 密码匹配凭证管理器
*
* @return
*/
@Bean
public HashedCredentialsMatcher hashedCredentialsMatcher() {
HashedCredentialsMatcher hashedCredentialsMatcher = new HashedCredentialsMatcher();
// 采用MD5方式加密
hashedCredentialsMatcher.setHashAlgorithmName("MD5");
// 设置加密次数
hashedCredentialsMatcher.setHashIterations(1024);
return hashedCredentialsMatcher;
} @Override
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection arg0) {
SimpleAuthorizationInfo info=new SimpleAuthorizationInfo(); info.addStringPermission("sys"); System.out.println("开始授权"); return info;
} @Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
UsernamePasswordToken upToken=(UsernamePasswordToken) token; String username=upToken.getUsername(); String password=new String(upToken.getPassword()); UserEntity user=new UserEntity(); user.setLoginName(username); user=userDao.selectOne(user); System.out.println("==========="); if(user!=null){ if(user.getPassword().equals(password)){ return new SimpleAuthenticationInfo(username,password,getName()); } } throw new UnauthenticatedException();
} }
三、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:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<!-- 自定义Realm -->
<bean id="myRealm" class="com.shiro.MyRealm"/>
<!-- 安全管理器 -->
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<property name="realm" ref="myRealm"/>
</bean>
<!-- Shiro过滤器 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<!-- Shiro的核心安全接口,这个属性是必须的 -->
<property name="securityManager" ref="securityManager"/>
<!-- 身份认证失败,则跳转到登录页面的配置 -->
<property name="loginUrl" value="/login.html"/>
<!-- 权限认证失败,则跳转到指定页面 -->
<property name="unauthorizedUrl" value="/login.html"/>
<!-- Shiro连接约束配置,即过滤链的定义 -->
<property name="filterChainDefinitions">
<value>
/login.html=anon
/index.html=anon
/**=authc
</value>
</property>
</bean>
<!-- 保证实现了Shiro内部lifecycle函数的bean执行 -->
<bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>
<!-- 开启Shiro注解 -->
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor"/>
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"/>
</bean>
</beans>
四、web.xml内容
<filter>
<filter-name>shiroFilter</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
<init-param>
<!-- 该值缺省为false,表示生命周期由SpringApplicationContext管理,设置为true则表示由ServletContainer管理 -->
<param-name>targetFilterLifecycle</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>shiroFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
五、测试相关的实体类及其DAO、Service等
UserEntity.java
package com.entity; import java.io.Serializable; import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName; @TableName("user")
public class UserEntity extends Model<UserEntity> { /**
*
*/
private static final long serialVersionUID = 1L;
private Integer id;
@TableField("login_name")
private String loginName;
private String password; public Integer getId() {
return id;
} public void setId(Integer id) {
this.id = id;
} public String getLoginName() {
return loginName;
} public void setLoginName(String loginName) {
this.loginName = loginName;
} public String getPassword() {
return password;
} public void setPassword(String password) {
this.password = password;
} @Override
protected Serializable pkVal() {
// TODO Auto-generated method stub
return id;
} }
UserDao.java
package com.dao; import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.entity.UserEntity; public interface UserDao extends BaseMapper<UserEntity>{ }
UserService.java
package com.service; import com.baomidou.mybatisplus.service.IService;
import com.entity.UserEntity; public interface UserService extends IService<UserEntity>{ }
UserServiceImpl.java
package com.service.impl; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.dao.UserDao;
import com.entity.UserEntity;
import com.service.UserService;
@Service
public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements UserService { }
UserDao.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.dao.UserDao"> <!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.entity.UserEntity">
<id column="id" property="id" />
<result column="login_name" property="loginName" />
<result column="password" property="password" /> </resultMap> </mapper>
最后,我想说的是,大家尽可能学习参照官网,毕竟官网是比较权威比较全面的。
当然,对于完全不懂不知道的,可以通过视频或者文档及入门程序达到有使用并了解的程度,然后在这个基础上多深入。当然,任何一门技术学习和使用过程中,问题总会不断的。
没关系,问题多,虽然挺操蛋的,但是越是觉得难受不爽,我想这就是上升带来的阻力和痛苦吧。就好比修仙者们,修仙的过程是痛苦的,当达到一定的程度时,就会天外飞仙,直达天堂。
哈哈,说过了。
总而言之,希望个人的小小分享,能给大家带来帮助。
MP实战系列(九)之集成Shiro的更多相关文章
- MP实战系列(二)之集成swagger
其实与spring+springmvc+mybatis集成swagger没什么区别,只是之前写的太不好了,所以这次决定详细写. 提到swagger不得不提rest,rest是一种架构风格,里面有对不同 ...
- MP实战系列(七)之集成springboot
springboot是现在比较流行的微服使用的框架,springboot本质上就是将spring+springmvc+mybatis零配置化,基本上springboot的默认配置符合我们的开发.当然有 ...
- MP实战系列(十四)之分页使用
MyBatis Plus的分页,有插件式的,也有其自带了,插件需要配置,说麻烦也不是特别麻烦,不过觉得现有的MyBatis Plus足以解决,就懒得配置插件了. MyBatis Plus的资料不算是太 ...
- MP实战系列(十二)之封装方法详解(续二)
继续MP实战系列(十一)之封装方法详解(续一)这篇文章之后. 此次要讲的是关于查询. 查询是用的比较多的,查询很重要,好的查询,加上索引如鱼得水,不好的查询加再多索引也是无济于事. 1.selectB ...
- MP实战系列(十)之SpringMVC集成SpringFox+Swagger2
该示例基于之前的实战系列,如果公司框架是使用JDK7以上及其Spring+MyBatis+SpringMVC/Spring+MyBatis Plus+SpringMVC可直接参考该实例. 不过建议最好 ...
- MP实战系列(八)之SpringBoot+Swagger2
SpringBoot一个原则,爱好编程的朋友们都知道,那就是"习惯优于配置". 今天一上来主要说的还是代码,个人比较喜欢来的实战系列的,不过有的时候还是比较偏重于理论,理论是造轮子 ...
- ElasticSearch实战系列九: ELK日志系统介绍和安装
前言 本文主要介绍的是ELK日志系统入门和使用教程. ELK介绍 ELK是三个开源软件的缩写,分别表示:Elasticsearch , Logstash, Kibana , 它们都是开源软件.新增了一 ...
- MP实战系列(三)之实体类讲解
首先说一句,mybatis plus实在太好用了! mybaits plus的实体类: 以我博客的用户类作为讲解 package com.blog.entity; import com.baomido ...
- shiro实战系列(九)之Web
一.Configuration(配置) 将 Shiro 集成到任何 Web 应用程序的最简单的方法是在 web.xml 中配置 ContextListener 和 Filter,理解如何读取 Shir ...
随机推荐
- easyui修改提示窗
1.将文本框type修改成 password 2.easyui中的js
- linux_shell_字符串
字符串是shell编程中最常用最有用的数据类型(除了数字和字符串,也没啥其它类型好用了),字符串可以用单引号,也可以用双引号,也可以不用引号. 但是单引号和双引号是有区别的: 单引号: 单引号里的任何 ...
- python匿名函数lambda与switch的实现
1,lambda的语法跟es6的箭头函数差不多 >>> show=lambda x,y: x * y >>> show( 10, 20 ) 200 2,递归求阶乘 ...
- ThinkPHP5自定义分页样式
1.在thinkphp/library/think/paginator/driver目录下新建文件Page.php 注意命名空间和继承 <?php namespace think\paginat ...
- IntelliJ idea 备份与恢复
为了防止突然断电或者电脑突然关机导致idea恢复出厂设置,需要定期备份配置. 一.备份 File---Export Settings 将settings.jar 文件导入到C:\Users\xutin ...
- Javascript、Jquery获取浏览器和屏幕各种高度宽度[mark]
Javascript: IE中:document.body.clientWidth ==> BODY对象宽度document.body.clientHeight ==> BODY对象高度d ...
- Android HandlerThread和IntentService
HandlerThreadHandlerThread继承了Thread,它是一种可以使用Handler的Thread,它实现也很简单,就是在run中通过Looper.prepare()来创建消息队列, ...
- 获取windows鼠标的当前坐标
#先下载pyautogui库,pip install pyautogui import os,time import pyautogui as pag try: while True: print ( ...
- 6.1 函数的返回值、匿名函数lambda、filter函数、map函数、reduce函数
函数的返回值: 函数一旦执行到 return,函数就会结束,并会返回return 后面的值,如果不使用显式使用return返回,会默认返回None . return None可以简写为 r ...
- 为何SQL SERVER使用sa账号登录还原数据库BAK文件失败,但是使用windows登录就可以
今天发现一个问题,就是公司开发服务器上的sql server使用sa账号登录后,还原一个数据库bak文件老是报错,错误如下: TITLE: Microsoft SQL Server Managemen ...