I tried a lot of things now but i seem to miss a piece of the puzzle. Here is the story: I have a request scoped bean that reads some SessionContext from the HttpServletRequest.
In my case using OrderedRequestContextFilter resolve the issue. You have to also set threadContextInheritable flag to true like this :
@Bean
public RequestContextFilter requestContextFilter() {
OrderedRequestContextFilter filter = new OrderedRequestContextFilter();
filter.setThreadContextInheritable(true);
return filter;
}