配置文件-shiro-context.xml
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置文件-shiro-context.xml相关的知识,希望对你有一定的参考价值。
<beans >
<bean id="securityManager" class="org...DefaultWebSecurityManager">
<property name="realm" ref="shiroRealm"/>
<property name="cacheManager" ref="cacheManager"/>
</bean>
<bean id="shiroFilter" class="org..ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager"/>
<property name="loginUrl" ref="/web/auth/login"/>
<property name="successUrl" ref="/"/>
<property name="unauthorizedUrl" ref="/"/>
<property name="filter">
<map>
<entry key="authc" value-ref="formAuthFilter"/>
</map>
</property>
<property name="filterChainDefinitions">
<value>
/services/**=anno
/web/auth/**=anno
/web/css/**=anno
/web/js/**=anno
/web/**=authc
</value>
</property>
</bean>
<bean id="cacheManager" class="org..MemoryConstrainedCacheManager"/>
<bean id="shiroRealm" class="com.etruck.portal.auth.ShiroRealm"/>
<bean id="lifecycleBeanPostProcessor" class="org..LifecycleBeanPostProcessor"/>
<bean id="formAuthFilter" class="com.etruck.portal.auth.FormAuthFilter"/>
<bean class="org..DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor"/>
<bean class="org..AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"/>
</bean>
</beans>
以上是关于配置文件-shiro-context.xml的主要内容,如果未能解决你的问题,请参考以下文章
C 语言文件操作 ( 配置文件读写 | 写出或更新配置文件 | 逐行遍历文件文本数据 | 获取文件中的文本行 | 查询文本行数据 | 追加文件数据 | 使用占位符方式拼接字符串 )