Spring集成Shiro

Spring集成Shiro步驟:

1.加Spring的jar包
  1).在web.xml中配置Spring,具體代碼如下:
    
    <!-- 配置Spring -->
    <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:applicationContext.xml</param-value>
    </context-param>  
    <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

   2).在src下創建Spring配置文件:appcationContext.xml

2.配置SpringMVC

1).在web.xml中配置SpringMVC,具體代碼如下:
    <!-- 配置SpringMVC -->
    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

2).在WEB-INF下創建SpringMVC配置文件:spring-servlet.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:mvc="http://www.springframework.org/schema/mvc"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
            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-4.0.xsd">
        
        <!-- 掃描controller所在的包 -->
        <context:component-scan base-package="cn.com.shiro.controller"></context:component-scan>
        
        <!-- 截取根目錄下jsp頁面的前後綴 -->
        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/"></property>
            <property name="suffix" value=".jsp"></property>
        </bean>
        
        <mvc:annotation-driven></mvc:annotation-driven>
        <mvc:default-servlet-handler/>
    </beans>

   3.Shiro與Web集成(Shiro集成Spring)

    * Shiro提供了與Web集成,其通過ShiroFilter入口來攔截需要安全控制的url,然後進行相應的權限控制。
    * ShiroFilter類似於Struts2/SpringMVC這種Web前端框架的前端控制器,是安全控制的入口點,其負責是讀取配置(如ini文件),然後判斷權限是否需要登錄/權限等工作。

    1)加入Shiro的jar包.

    2).在web.xml中配置ShiroFilter
    <!-- 
    1. 配置  Shiro 的 shiroFilter.  
    2. DelegatingFilterProxy 實際上是 Filter 的一個代理對象. 默認進行情況下, Spring 會到 IOC 容器中查找和 
    <filter-name> 對應的 filter bean. 也可以通過 targetBeanName 的初始化參數來配置 filter bean 的 id. 
    -->
    <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>


    <filter-mapping>
        <filter-name>shiroFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

3).在Spring中配置Shiro
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
        
        <!-- 配置數據源 -->
        <!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
            <property name="driverClassName" value="org.hsqldb.jdbcDriver"/>
            <property name="url" value="jdbc:hsqldb:mem:shiro-spring"/>
            <property name="username" value="sa"/>
        </bean> -->
        
        <!--
        1. 配置 SecurityManager
            1.1 cacheManager : 緩存管理器
            1.2 sessionMode : 配置session管理方式
            1.3 realm : 配置realm
        -->     
        <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
            <property name="cacheManager" ref="cacheManager"/>
            <property name="sessionMode" value="native"/>
            <property name="realm" ref="jdbcRealm"/>
        </bean>


        <!-- 
        2. 配置 CacheManager. 可以用企業第三方緩存機制. 這裏使用ehcache
            2.1 需要加入 ehcache 的 jar 包及配置文件. 
        -->     
        <bean id="cacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">
            <!-- Set a net.sf.ehcache.CacheManager instance here if you already have one.  If not, a new one
                 will be creaed with a default config:
                 <property name="cacheManager" ref="ehCacheManager"/> -->
            <!-- If you don't have a pre-built net.sf.ehcache.CacheManager instance to inject, but you want
                 a specific Ehcache configuration to be used, specify that here.  If you don't, a default
                 will be used.: -->
            <property name="cacheManagerConfigFile" value="classpath:ehcache.xml"/> 
        </bean>

        <!-- 
        3. 配置 Realm 
            3.1 直接配置實現了 org.apache.shiro.realm.Realm 接口的 bean
        -->     
        <bean id="jdbcRealm" class="cn.com.shiro.realm.ShiroRealm">
            <property name="credentialsMatcher">
                <bean class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
                    <!-- 指定加密算法爲MD5 -->
                    <property name="hashAlgorithmName" value="MD5"></property>
                    <!-- 指定加密次數爲1024次 -->
                    <property name="hashIterations" value="1024"></property>
                </bean>
            </property>
        </bean>

        <!--  
        4. 配置 LifecycleBeanPostProcessor. 可以自定的來調用配置在 Spring IOC 容器中 shiro bean 的生命週期方法. 
        -->       
        <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>

        <!--  
        5. 啓用 IOC 容器中使用 shiro 的註解. 但必須在配置了 LifecycleBeanPostProcessor 之後纔可以使用. 
        -->     
        <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>


        <!-- 
        6. 配置 ShiroFilter. 
            6.1 id 必須和 web.xml 文件中配置的 DelegatingFilterProxy 的 <filter-name> 一致.
                       若不一致, 則會拋出: NoSuchBeanDefinitionException. 因爲 Shiro 會來 IOC 容器中查找和 <filter-name>             名字對應的 filter bean.
        -->     
        <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="/list.jsp"/>
            <property name="unauthorizedUrl" value="/unauthorized.jsp"/>
                   
            <!--  
                配置哪些頁面需要受保護.以及訪問這些頁面需要的權限. 
                1). anon 可以被匿名訪問
                2). authc 必須認證(即登錄)後纔可能訪問的頁面. 
                3). logout 登出.
                4). roles 角色過濾器
            -->
            
            <property name="filterChainDefinitions">
                <value>
                    /login.jsp = anon           
                    /shiro/login = anon    
                    /shiro/logout = logout
                    /** = authc
                </value>
            </property>
            
        </bean>    
    </beans>


發佈了75 篇原創文章 · 獲贊 8 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章