Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在addFilterChain方法中配置角色?
addFilterChain
在 INI 文件中,它类似于
[url] /secure/** = authc, roles[admin]
在 Java 方法中会怎样?
addFilterChain("/secure/**", ROLES);
ShiroWebModule 提供了一个模仿 INI [] 语法的“config”方法。
因此,相当于您的 INI 配置将是:
addFilterChain("/secure/**", AUTHC, config(ROLES, "admin"));