Questions tagged [reactivesecuritycontextholder]

4 questions
2
votes
1 answer

SpringWebFlux security - update auth details in session

I am using Spring boot 2.5.6 with webflux security. @EnableWebFluxSecurity public class AdminSecurityConfig { @Bean public SecurityWebFilterChain securitygWebFilterChain(final ServerHttpSecurity http, final…
1
vote
1 answer

How to get claims from jwt token in spring webflux

I am having a spring webflux based GraphQL application. The application is configured as resourceServer and I am able to access the /graphql endpoint by passing JWT token. Within the JWT token there are claims that I want to access. I am trying to…
0
votes
0 answers

Manage context on express application

I have an internal logger project. Until now, we are managing the global parameters context of the logger with httpContext import * as httpContext from 'express-http-context'; that httpContext basically creates a context for each HTTP request flow…
0
votes
1 answer

calling blocking feign client from reactive spring service

I am trying to call generated feign client from reactive spring flux like this: .doOnNext(user1 -> { ResponseEntity response = recorderClient.createUserProfile(new UserProfileDto().principal(user1.getLogin())); …
Konstantin Pribluda
  • 12,329
  • 1
  • 30
  • 35