博客
关于我
MP实战系列(九)之集成Shiro
阅读量:470 次
发布时间:2019-03-06

本文共 7840 字,大约阅读时间需要 26 分钟。

下面示例是在之前的基础上进行的,大家如果有什么不明白的可以参考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相关的教程

文档的话,大家可以参考:

通过该篇文章获取资料,包含视频等相关资料

张开涛先生的github系列地址如下:

https://github.com/zhangkaitao/shiro-example

张开涛先生的shiro博客文章系列地址如下:

http://jinnianshilongnian.iteye.com/blog/2049092

上述列出的,可以作为朋友们的学习参考,当然技术每时每刻不在更新,但是底层原理却是不变的。

关于shiro和Java流行框架(Spring+SpringMVC+MyBatis或SpringBoot等案例)

大家可以去github上找,或者直接去码云上借鉴。

码云上的案例都还不错,感谢开源并乐于分享的程序爱好者们。

至于博客文章,几年前的和现在的shiro相关案例,大家都可以参考借鉴。

为了不做拿来主义,我觉得有必要分享分享,即便相关的案例比较多,但是每篇博文我想都从不同的角度看待shiro。

俗话说:对于哈姆莱特,一千个读者有一千个体会。

至于原话是否如此,我也懒得百度搜索了,总而言之每个编程爱好者们对于技术,都有自己的视角。

一、导入依赖

org.apache.shiro
shiro-core
1.2.2
org.apache.shiro
shiro-web
1.2.2
org.apache.shiro
shiro-spring
1.2.2

 

二、自定义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内容

shiroFilter
org.springframework.web.filter.DelegatingFilterProxy
targetFilterLifecycle
true
shiroFilter
/*

 

五、测试相关的实体类及其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
{ /** * */ 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
{}

 

UserService.java

package com.service;import com.baomidou.mybatisplus.service.IService;import com.entity.UserEntity;public interface UserService extends IService
{}

 

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;@Servicepublic class UserServiceImpl extends ServiceImpl
implements UserService {}

 

UserDao.xml

 

最后,我想说的是,大家尽可能学习参照官网,毕竟官网是比较权威比较全面的。

当然,对于完全不懂不知道的,可以通过视频或者文档及入门程序达到有使用并了解的程度,然后在这个基础上多深入。当然,任何一门技术学习和使用过程中,问题总会不断的。

没关系,问题多,虽然挺操蛋的,但是越是觉得难受不爽,我想这就是上升带来的阻力和痛苦吧。就好比修仙者们,修仙的过程是痛苦的,当达到一定的程度时,就会天外飞仙,直达天堂。

哈哈,说过了。

总而言之,希望个人的小小分享,能给大家带来帮助。

 

转载地址:http://wxobz.baihongyu.com/

你可能感兴趣的文章
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>
MySQL Connector/Net 句柄泄露
查看>>
multiprocessor(中)
查看>>