本文整理了Java中org.springframework.security.config.annotation.web.builders.WebSecurity.expressionHandler()
方法的一些代码示例,展示了WebSecurity.expressionHandler()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebSecurity.expressionHandler()
方法的具体详情如下:
包路径:org.springframework.security.config.annotation.web.builders.WebSecurity
类名称:WebSecurity
方法名:expressionHandler
[英]Set the SecurityExpressionHandler to be used. If this is null, then a DefaultWebSecurityExpressionHandler will be used.
[中]设置要使用的SecurityExpressionHandler。如果为null,则将使用DefaultWebSecurityExpressionHandler。
代码示例来源:origin: spring-projects/spring-security
@Override
public void configure(WebSecurity web) throws Exception {
web.expressionHandler(EXPRESSION_HANDLER);
}
代码示例来源:origin: metatron-app/metatron-discovery
@Override
public void configure(WebSecurity web) throws Exception {
// @formatter:off
web
.expressionHandler(
new DefaultWebSecurityExpressionHandler() {
@Override
protected SecurityExpressionOperations createSecurityExpressionRoot(Authentication authentication, FilterInvocation fi) {
WebSecurityExpressionRoot root = (WebSecurityExpressionRoot) super.createSecurityExpressionRoot(authentication, fi);
root.setPermissionEvaluator(basePermissionEvaluator);
root.setDefaultRolePrefix(""); //remove the prefix ROLE_
setDefaultRolePrefix("");
return root;
}
})
.ignoring()
.antMatchers(HttpMethod.OPTIONS)
.antMatchers("/"
, "/favicon.ico"
, "/app/v2/**"
, "/console/**"
, "/api/browser/**"
, "/admin/**");
// @formatter:on
}
内容来源于网络,如有侵权,请联系作者删除!