Skip to content

Instantly share code, notes, and snippets.

@radutoev
Created March 11, 2018 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radutoev/33d3483c69a1eaca7b494047c345f58e to your computer and use it in GitHub Desktop.
Save radutoev/33d3483c69a1eaca7b494047c345f58e to your computer and use it in GitHub Desktop.
@Configuration
public class ServletConfig {
@Bean
public DispatcherServlet dispatcherServlet() {
DispatcherServlet servlet = new DispatcherServlet();
servlet.setThreadContextInheritable(true);
return servlet;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment