Celem jest dołączenie niektórych danych z kontekstu zabezpieczeń za pomocą RequestInterceptor, ale problem, że wywołanie SecurityContextHolder.getContext().getAuthentication()
zawsze zwraca wartość null, nawet jeśli nie jest zerowa (jestem pewien 100%).Nieosiągalny kontekst zabezpieczeń za pomocą Feign RequestInterceptor
Rozumiem, że to dlatego, że Interceptor został stworzony i jest uruchamiany w innym wątku.
Jak mogę rozwiązać ten problem i uzyskać rzeczywiste dane z kontekstu zabezpieczeń?
Moje usługi:
@FeignClient(value = "api", configuration = { FeignConfig.class })
public interface DocumentService {
@RequestMapping(value = "/list", method = RequestMethod.GET)
DocumentListOperation list();
}
My FeignConfig klasa:
@Bean
public RequestInterceptor requestInterceptor() {
return new HeaderInterceptor(userService);
}
public class HeaderInterceptor implements RequestInterceptor {
private UserService userService;
public HeaderInterceptor(UserService userService) {
this.userService = userService;
}
@Override
public void apply(RequestTemplate requestTemplate) {
Authentication a = SecurityContextHolder.getContext().getAuthentication()
requestTemplate.header("authentication", a.toString());
}
}