如何将值添加到Spring SecurityContextHolder中

前端之家收集整理的这篇文章主要介绍了如何将值添加到Spring SecurityContextHolder中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有登录参数

1.userName

2.password

3.companyId

我使用以下代码获得了用户名和密码

 Authentication auth = SecurityContextHolder.getContext().getAuthentication();

 String name = auth.getName();

 String pwd = auth.getCredentials();

 String companyId= ???//How can i set and then get company Id here.

我的问题是如何使用SecurityContextHolder获得额外的登录参数(companyId)?

提取类可能不是弹簧控制器.这就是我使用的原因
SecurityContextHolder而不是HttpSession.

谢谢,

最佳答案
创建简单的SpringSecurityFilter过滤器.使用setDetails方法用户添加额外的详细信息.

package org.example;  
public class CustomDeatilsSecurityFilter extends SpringSecurityFilter {

   protected void doFilterHttp(HttpServletRequest request,HttpServletResponse response,FilterChain chain) {
      SecurityContext sec = SecurityContextHolder.getContent();
      AbstractAuthenticationToken auth = (AbstractAuthenticationToken)sec.getAuthentication();
      HashMap

像这样将它添加到Spring Security Filter Chain(这不是web.xml,但类似于applicationContext-security.xml):

然后在代码中的某处你可以做这样的事情:

Map

Spring Security的基本安装
在web.xml中

在applicationContext-security.xml中

在项目的pom.xml中

     原文链接:https://www.f2er.com/spring/432639.html

猜你在找的Spring相关文章