Le contexte de sécurité Spring est toujours lié à Threadlocal.
Vous pouvez probablement définir en plus MODE_INHERITABLETHREADLOCAL pour le contexte de sécurité.
@Bean
public MethodInvokingFactoryBean methodInvokingFactoryBean() {
MethodInvokingFactoryBean methodInvokingFactoryBean = new MethodInvokingFactoryBean();
methodInvokingFactoryBean.setTargetClass(SecurityContextHolder.class);
methodInvokingFactoryBean.setTargetMethod("setStrategyName");
methodInvokingFactoryBean.setArguments(new String[]{SecurityContextHolder.MODE_INHERITABLETHREADLOCAL});
return methodInvokingFactoryBean;
}
http://www.ogrigas .eu/spring/2010/04/inherit-spring-security-context-in-child-threads
Comment configurer la stratégie Spring Security SecurityContextHolder ?