springside页面权限配置

<property name="filterChainDefinitions">
<value>
/login = authc
/logout = logout
/static/** = anon
    /account/user/** = perms["user:view"]
    /account/group/** = perms["group:view"]
    /account/term/** = perms["user:view"]
    /account/trans/** = perms["user:view"]
    /account/merchant/** = perms["user:view"]    
</value>
</property>
这个是shiro的查看视图的身份验证,perms指的是你要查看视图要经过什么样的验证,前面的url指的是
你要查看的视图

这里是标记进入那些页面需要那些组的权限才能看。

你可能感兴趣的:(springside用户组权限)