org.springframework.security.config.annotation.web.builders.WebSecurity.getPrivilegeEvaluator()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(124)

本文整理了Java中org.springframework.security.config.annotation.web.builders.WebSecurity.getPrivilegeEvaluator()方法的一些代码示例,展示了WebSecurity.getPrivilegeEvaluator()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebSecurity.getPrivilegeEvaluator()方法的具体详情如下:
包路径:org.springframework.security.config.annotation.web.builders.WebSecurity
类名称:WebSecurity
方法名:getPrivilegeEvaluator

WebSecurity.getPrivilegeEvaluator介绍

[英]Gets the WebInvocationPrivilegeEvaluator to be used.
[中]获取要使用的WebInvocationPrivilegeEvaluator。

代码示例

代码示例来源:origin: spring-projects/spring-security

/**
 * Creates the {@link WebInvocationPrivilegeEvaluator} that is necessary for the JSP
 * tag support.
 * @return the {@link WebInvocationPrivilegeEvaluator}
 * @throws Exception
 */
@Bean
@DependsOn(AbstractSecurityWebApplicationInitializer.DEFAULT_FILTER_NAME)
public WebInvocationPrivilegeEvaluator privilegeEvaluator() throws Exception {
  return webSecurity.getPrivilegeEvaluator();
}

代码示例来源:origin: org.springframework.security/spring-security-config

/**
 * Creates the {@link WebInvocationPrivilegeEvaluator} that is necessary for the JSP
 * tag support.
 * @return the {@link WebInvocationPrivilegeEvaluator}
 * @throws Exception
 */
@Bean
@DependsOn(AbstractSecurityWebApplicationInitializer.DEFAULT_FILTER_NAME)
public WebInvocationPrivilegeEvaluator privilegeEvaluator() throws Exception {
  return webSecurity.getPrivilegeEvaluator();
}

代码示例来源:origin: org.springframework.security/spring-security-javaconfig

/**
 * Creates the {@link WebInvocationPrivilegeEvaluator} that is necessary for the JSP tag support.
 * @return the {@link WebInvocationPrivilegeEvaluator}
 * @throws Exception
 */
@Bean
@DependsOn("springSecurityFilterChain")
public WebInvocationPrivilegeEvaluator privilegeEvaluator() throws Exception {
  return webSecurity.getPrivilegeEvaluator();
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Creates the {@link WebInvocationPrivilegeEvaluator} that is necessary for the JSP
 * tag support.
 * @return the {@link WebInvocationPrivilegeEvaluator}
 * @throws Exception
 */
@Bean
@DependsOn(AbstractSecurityWebApplicationInitializer.DEFAULT_FILTER_NAME)
public WebInvocationPrivilegeEvaluator privilegeEvaluator() throws Exception {
  return webSecurity.getPrivilegeEvaluator();
}

相关文章