这一篇文章涵盖了将 shiro 集成到基于 spring 的应用程序的方法。
shiro 的 java bean兼容性使它非常适合通过 spring xml 或其他基于 spring 的配置机制进行配置。shiro 的应用程序需要一个应用程序单例安全管理器 ( securiymanager) 实例。注意,这并不一定是静态的单例,但是应用程序应该只使用一个实例,不管它是否是静态的单例。
1.独立的应用程序
以下是在 spring 应用程序中启用应用程序单例安全管理器的最简单方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!-- 定义连接到后端安全数据源的 realm : --> <bean id= "myrealm" class = "..." > ... </bean> <bean id= "securitymanager" class = "org.apache.shiro.mgt.defaultsecuritymanager" > <!-- 单一 realm 应用这样写。如果有多个 realm ,可以使用 "realms" 属性 --> <property name= "realm" ref= "myrealm" /> </bean> <bean id= "lifecyclebeanpostprocessor" class = "org.apache.shiro.spring.lifecyclebeanpostprocessor" /> <!-- 对于最简单的集成方式,就像所有的 securityutils 中的静态 方法一样,在所有情况下都适用,将 securitymanager bean 声明 为一个静态的单例对象。但不要在 web 应用程序中这样做。参见 下面的 “web 应用程序” 部分。 --> <bean class = "org.springframework.beans.factory.config.methodinvokingfactorybean" > <property name= "staticmethod" value= "org.apache.shiro.securityutils.setsecuritymanager" /> <property name= "arguments" ref= "securitymanager" /> </bean> |
2.web 应用程序
shiro 对 spring web 应用程序有很棒的支持。在一个 web 应用程序中,所有的可用的 web 请求都必须经过 shiro filter。这个过滤器非常强大,允许基于 url 路径表达式执行的特殊自定义任何过滤器链。
在 shiro 1.0之前,你必须在 spring web 应用程序中使用一种混合的方法,定义 shiro 的过滤器所有的配置属性都在 web.xml 中。但是在 spring.xml中定义 securitymanager,这有点不友好。
现在,在 shiro 1.0 以上的版本中,所有的 shiro 配置都是在spring xml 中完成的,它提供了更健壮的 spring 配置机制。
以下是如何在基于 spring 的 web 应用程序中配置 shiro:
web.xml
除了其他的 spring 的一些标签 ( contextloaderlistener、log4jconfiglistener 等),还定义了以下过滤器和过滤器的映射:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!-- 在 applicationcontext.xml 中,过滤器名称 “shirofilter” bean的名称匹配。--> <filter> <filter-name>shirofilter</filter-name> <filter- class >org.springframework.web.filter.delegatingfilterproxy</filter- class > <init-param> <param-name>targetfilterlifecycle</param-name> <param-value> true </param-value> </init-param> </filter> ... <!-- 确保你想要的任何请求都可以被过滤。/ * 捕获所有 请求。通常,这个过滤器映射首先 (在所有其他的之前)定义, 确保 shiro 在过滤器链的后续过滤器中工作:--> <filter-mapping> <filter-name>shirofilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> |
applicationcontext.xml
在 applicationcontext.xml 文件,定义 web 适用的securitymanager 和 “shirofilter” bean,这个bean 在 web.xml 中会被引用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<bean id= "shirofilter" class = "org.apache.shiro.spring.web.shirofilterfactorybean" > <property name= "securitymanager" ref= "securitymanager" /> <!-- 根据具体情况定义以下几个属性: <property name= "loginurl" value= "/login.jsp" /> <property name= "successurl" value= "/home.jsp" /> <property name= "unauthorizedurl" value= "/unauthorized.jsp" /> --> <!-- 如果声明过任何的 javax.servlet,“filters” 属性就是不必要的了--> <!-- <property name= "filters" > <util:map> <entry key= "analias" value-ref= "somefilter" /> </util:map> </property> --> <property name= "filterchaindefinitions" > <value> # 定义需要过滤的 url : /admin/** = authc, roles[admin] /docs/** = authc, perms[document:read] /** = authc </value> </property> </bean> <!-- 可以在上下文中定义的任何 javax.servlet.filter bean,它们会自动被上面的 “shirofilter” bean 所捕获,并为“filterchaindefinitions” 属性所用。如果需要的话,可以手动添加/显式添加到 shirofilter 的 “filters” map 上。--> <bean id= "somefilter" class = "..." /> <bean id= "anotherfilter" class = "..." > ... </bean> ... <bean id= "securitymanager" class = "org.apache.shiro.web.mgt.defaultwebsecuritymanager" > <!-- 单一 realm 应用这样写。如果有多个 realm ,可以使用 "realms" 属性. --> <property name= "realm" ref= "myrealm" /> <!-- 认情况下,适用 servlet 容器的 session 。取消对这一行的注释后则使用 shiro的原生 session --> <!-- <property name= "sessionmode" value= "native" /> --> </bean> <bean id= "lifecyclebeanpostprocessor" class = "org.apache.shiro.spring.lifecyclebeanpostprocessor" /> <!-- 通过自定义 shiro realm 的子类来使用后台的数据源 --> <bean id= "myrealm" class = "..." > ... </bean> |
启用 shiro 的注解
在应用程序中,可能需要使用 shiro 的注释来进行安全检查(例如,@requiresrole、@requirespermission 等等。这需要 shiro的 spring aop 集成,以扫描适当的带注释的类,并在必要时执行安全逻辑。下面是如何启用这些注释,将这两个 bean 定义添加到 applicationcontext.xml 中:
1
2
3
4
|
<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> |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://james.letec.top/2018/02/17/Spring 应用中集成 Apache Shiro/