Spring Shiro配置实现用户认证和受权

一、applicationContext-shiro.xml配置:实现认证和受权 css

<!-- shiro start -->
    <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor" />
    <bean id="cacheManager" class="org.apache.shiro.cache.ehcache.EhCacheManager">
        <property name="cacheManagerConfigFile"
            value="classpath:ehcache.xml" />
    </bean>
    <bean id="credentialsMatcher"
        class="org.apache.shiro.authc.credential.HashedCredentialsMatcher">
        <property name="hashAlgorithmName" value="SHA-256" />
    </bean>
    <bean id="iniRealm" class="com.boonya.shiro.security.CurrentIniRealm">
        <constructor-arg type="java.lang.String" value="classpath:shiro.ini" />
        <property name="credentialsMatcher" ref="credentialsMatcher" />
    </bean>
    <bean id="userRealm" class="com.boonya.shiro.security.UserRealm" />
    <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
        <property name="realms">
            <list>
                <ref bean="iniRealm" />
                <ref bean="userRealm" />
            </list>
        </property>
        <property name="cacheManager" ref="cacheManager" />
    </bean>
    <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
        <property name="securityManager" ref="securityManager" />
        <property name="loginUrl" value="/login" />
        <property name="successUrl" value="/maps/main.html"></property>
        <property name="unauthorizedUrl" value="/unauthorized"></property>
        <property name="filters">
            <util:map>
                <entry key="anAlias">
                    <bean
                        class="org.apache.shiro.web.filter.authc.PassThruAuthenticationFilter" />
                </entry>
            </util:map>
        </property>
        <property name="filterChainDefinitions">
            <value>
                /unauthorized=anon
                /validate/code*=anon
                /login/**=anon
                /image/**=anon
                /js/**=anon
                /css/**=anon
                /common/**=anon
                /index.htm* = anon
                /maps/**=authc            
           </value>
        </property>
    </bean>
    <!-- shiro end -->说明:红色字体部分是对用户操做的URL进行过滤:认证或受权

二、shiro过滤器过滤属性含义 html

securityManager:这个属性是必须的 java

loginUrl :没有登陆的用户请求须要登陆的页面时自动跳转到登陆页面,不是必须的属性,不输入地址的话会自动寻找项目web项目的根目录下的”/login.jsp”页面。 web

successUrl :登陆成功默认跳转页面,不配置则跳转至”/”。若是登录前点击的一个须要登陆的页面,则在登陆自动跳转到那个须要登陆的页面。不跳转到此。 spring

unauthorizedUrl :没有权限默认跳转的页面。 apache

===============其权限过滤器及配置释义======================= 安全

anon   org.apache.shiro.web.filter.authc.AnonymousFilter

authc  org.apache.shiro.web.filter.authc.FormAuthenticationFilter

authcBasic org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter

perms  org.apache.shiro.web.filter.authz.PermissionsAuthorizationFilter

port   org.apache.shiro.web.filter.authz.PortFilter

rest   org.apache.shiro.web.filter.authz.HttpMethodPermissionFilter

roles  org.apache.shiro.web.filter.authz.RolesAuthorizationFilter

ssl    org.apache.shiro.web.filter.authz.SslFilter

user   org.apache.shiro.web.filter.authc.UserFilter

logout org.apache.shiro.web.filter.authc.LogoutFilter

anon:例子/admins/**=anon 没有参数,表示能够匿名使用。 app

authc:例如/admins/user/**=authc表示须要认证(登陆)才能使用,没有参数 jsp

roles例子/admins/user/**=roles[admin],参数能够写多个,多个时必须加上引号,而且参数之间用逗号分割,当有多个参数时,例如admins/user/**=roles["admin,guest"],每一个参数经过才算经过,至关于hasAllRoles()方法。 post

perms例子/admins/user/**=perms[user:add:*],参数能够写多个,多个时必须加上引号,而且参数之间用逗号分割,例如/admins/user/**=perms["user:add:*,user:modify:*"]当有多个参数时必须每一个参数都经过才经过,想当于isPermitedAll()方法。

rest:例子/admins/user/**=rest[user],根据请求的方法,至关于/admins/user/**=perms[user:method] ,其中methodpostgetdelete等。

port:例子/admins/user/**=port[8081],当请求的url的端口不是8081是跳转到schemal://serverName:8081?queryString,其中schmal是协议httphttps等,serverName是你访问的host,8081url配置里port的端口,queryString

是你访问的url里的?后面的参数。

authcBasic例如/admins/user/**=authcBasic没有参数表示httpBasic认证

ssl:例子/admins/user/**=ssl没有参数,表示安全的url请求,协议为https

user:例如/admins/user/**=user没有参数表示必须存在用户,当登入操做时不作检查

注:anonauthcBasicauchcuser是认证过滤器,

permsrolessslrestport是受权过滤器

三、web.xml中shiroFilter配置

<!-- Shiro Filter is defined in the spring application context: -->
<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>/*</url-pattern>
</filter-mapping>
相关文章
相关标签/搜索