Created
December 21, 2011 11:12
-
-
Save mente/1505659 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean" securityManager-ref="webSecurityManager" loginUrl="/login" successUrl="/accounts/profile"> | |
<property name="filterChainDefinitionMap"> | |
<map> | |
<entry key="/accounts/**" value="passThru"/> | |
<entry key="/login" value="passThru"/> | |
<entry key="/admin/**" value="passThru, roles[ADMIN]"/> | |
</map> | |
</property> | |
</bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment