【shiro】11.shiro过滤器配置方式setFilterChainDefinitionMap

之前学习shiro的时候,设置了登录页面和主页面(需要登录才能范围的页面。)

1 //配置系统公共资源
2 Map<String,String> map = new HashMap<>();
3 // authc 请求这个资源需要认证和授权
4 map.put("/index", "authc");
5 //默认认证界面路径
6 shiroFilterFactoryBean.setLoginUrl(loginUrl);
7 shiroFilterFactoryBean.setFilterChainDefinitionMap(map);

 map的第二个参数是什么含义的?——过滤。即当前页面或资源访问权限(多个参数用逗号分割)。

认证过滤器

 

参数 类型 含义
anon org.apache.shiro.web.filter.authc.AnonymousFilter 没有参数,表示可以匿名使用
authc org.apache.shiro.web.filter.authc.FormAuthenticationFilter 表示需要认证(登录)才能使用,没有参数
authcBasic org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter 表示需要Basic认证才能使用,没有参数
logout   退出logout,第一个参数表示地址,shiro会清除session
user org.apache.shiro.web.filter.authz.UserFilter 没有参数,表示必须存在用户,当登入操作时不做检查
captchaValidate
  需要验证码通过

授权过滤器

参数 类型 含义
perms org.apache.shiro.web.filter.authz.PermissionAuthorizationFilter 授权。参数可以写多个,多个时必须加上引号,并且参数之间用逗号分割,例如/admins/user/**=perms["user:add:*,user:modify:*"],当有多个参数时必须每个参数都通过才通过,想当于isPermitedAll()方法
port org.apache.shiro.web.filter.authz.PortFilter 接口。port[8081],当请求的url的端口不是8081是跳转到schemal://serverName:8081?queryString,其中schmal是协议http或https等,serverName是你访问的host,8081是url配置里port的端口,queryString是你访问的url里的?后面的参数。
rest org.apache.shiro.web.filter.authz.HttpMethodPermissionFilter 根据请求的方法,相当于/admins/user/**=perms[user:method] ,其中method为post,get,delete等。
roles org.apache.shiro.web.filter.authz.RolesAuthorizationFilter 参数可以写多个,多个时必须加上引号,并且参数之间用逗号分割,当有多个参数时,例如admins/user/**=roles["admin,guest"],每个参数通过才算通过,相当于hasAllRoles()方法
ssl org.apache.shiro.web.filter.authz.SslFilter 没有参数,表示安全的url请求,协议为https
posted @ 2024-10-18 16:44  陆陆无为而治者  阅读(22)  评论(0编辑  收藏  举报