<bean id="membersAuthc"
class="org.apache.shiro.web.filter.authc.FormAuthenticationFilter">
<property name="loginUrl" value="${frontPath}/loginl" />
<property name="successUrl" value="${frontPath}" />
</bean>
<bean id="adminAuthc"
class="org.apache.shiro.web.filter.authc.FormAuthenticationFilter">
<property name="loginUrl" value="${adminPath}/login" />
<property name="successUrl" value="${adminPath}" />
</bean>
<bean id="adminUser" class="org.apache.shiro.web.filter.authc.UserFilter">
<property name="loginUrl" value="${adminPath}/login" />
</bean>
<bean id="frontUser" class="org.apache.shiro.web.filter.authc.UserFilter">
<property name="loginUrl" value="${frontPath}/login" />
</bean>
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="loginUrl" value="${adminPath}/login" />
<property name="successUrl" value="${adminPath}" />
<property name="filters">
<map>
<entry key="authc" value-ref="formAuthenticationFilter" />
<entry key="membersAuthc" value-ref="membersAuthc" />
<entry key="adminAuthc" value-ref="adminAuthc" />
<entry key="adminUser" value-ref="adminUser" />
</map>
</property>
<property name="filterChainDefinitions">
<value>
/static/** = anon
/userfiles/** = anon
${adminPath}/login = authc
${adminPath}/logout = logout
${adminPath}/** = adminUser
${frontPath}/show* = frontUser
</value>
</property>
</bean>
安全框架Shiro配置前后台
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- //Clojure入门教程: Clojure – Functional Programming for the J...
- =========================================================...
- 文章作者:Tyan博客:noahsnail.com 3.4 Dependencies A typical ente...