- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个现有的 Spring Boot 应用程序,它对由第三方身份验证服务处理的 Web 应用程序进行身份验证。与 SiteMinder 一样,第 3 方服务将 header 注入(inject) HTTP 请求,例如 USER_HEADER。我的任务是配置现有应用程序以提取此 HTTP header 并通过 Spring Security @AuthenticatedPrincipal
将生成的 Auth 对象提供给 MVC 层的 Controller 。注解。
如前所述,项目是一个 Spring Boot 应用程序,版本 1.1.9.RELEASE,带有 Java 8。
(下面显示的代码来自一个反射(reflect)功能的测试项目)
请注意 此应用程序仅是 Java Config。不允许使用 XML(我的领导授权)
通过挖掘 Spring Security reference以及我知道需要使用 RequestHeaderAuthenticationFilter
的其他各种文章并将其注入(inject)过滤器链以从请求 header 中获取用户名。
筛选:
public class HeaderAuthenticationFilter extends RequestHeaderAuthenticationFilter {
private static final Logger logger = LoggerFactory.getLogger(HeaderAuthenticationFilter.class);
private final String HEADER = "USER_HEADER";
public HeaderAuthenticationFilter() {
super();
this.setPrincipalRequestHeader(HEADER);
// This setting returns an HTTP 404 with no error message instead of an HTTP 500 with the "missing header" exception message
this.setExceptionIfHeaderMissing(false);
}
@Override
protected Object getPreAuthenticatedPrincipal(HttpServletRequest request) {
logger.debug("Authorizing URI: " + request.getRequestURI());
try {
return super.getPreAuthenticatedPrincipal(request);
} catch(PreAuthenticatedCredentialsNotFoundException e) {
logger.error("Could not find request header " + HEADER + " in request", e);
return null;
}
}
}
@AuthenticationPrincipal User user
注释我的 Controller 方法时,返回的用户对象是一个空的用户对象。当我将方法参数更改为
Authentication user
并明确调用
user.getPrincipal()
我得到用户对象就好了。 @AuthenticationPrincipal 像这样失败有什么原因吗?
最佳答案
原因@AuthenticationPrincipal
没有解决是因为我没有用 @EnableWebMvcSecurity
注释我的 WebSecurityConfigurerAdapter 类
添加此注释解决了问题
关于java - Spring Security HeaderPreAuthentication Principal 未从 @AuthenticationPrincipal 解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27927146/
我有一个现有的 Spring Boot 应用程序,它对由第三方身份验证服务处理的 Web 应用程序进行身份验证。与 SiteMinder 一样,第 3 方服务将 header 注入(inject) H
我是一名优秀的程序员,十分优秀!