shiro 实现登录认证和权限控制

Posted 小琪子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shiro 实现登录认证和权限控制相关的知识,希望对你有一定的参考价值。

1 添加依赖jar包

<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>3.2.0</version>
</dependency>


2 配置shiro过滤器

<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>/supervisor/*</url-pattern>
</filter-mapping>

以上是关于shiro 实现登录认证和权限控制的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 整合 Shiro 实现登录认证与权限控制

前后端分离项目中 springboot 集成 shiro 实现权限控制

Spring Security实现登录认证和权限控制

Shiro框架-----用来实现认证和授权的操作

springboot引入shiro实现拦截,权限,认证,授权功能

shiro实现app和web统一登录