apache shiro 跳过验证直接访问指定页面的方法

1、想要把后台管理系统中的某个预览界面作为展示界面,无需登录也可以访问。

但是后台管理系统中的页面访问都受shiro保护,需要验证登录才可以。

 

方法是在shiro的配置文件中,


            
                /admin/common/logout.jhtml = logout
                /admin/common/unauthorized.jhtml =anon
                /admin/common/captcha.jhtml = anon
                /admin/common/area.jhtml = anon
                /admin/common/index.jhtml = anon
                /admin/article_fb/view.jhtml = anon
                /admin/api/** = anon
                /resources/** = anon
                /api/** = anon
                /admin/** = authc
            

        

 

将你要去掉访问权限的页面添加 = anon

随后直接输入指定地址就可以跳过登录直接访问到页面了。

 

啦啦。。。

 

你可能感兴趣的:(apache shiro 跳过验证直接访问指定页面的方法)