Propagating Spring Security Context

Spring REST APIs are secured using OAuth 2.0 + JWT. Information available in JWT is parsed and added to Spring Security Context. When we need to make an Async call or send a JMS message, Spring Security Context needs to be propagated. How do we do that?


Coming Soon