Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @Configuration
  2. @EnableAsync
  3. @ComponentScan( "com.xyz.bbb.ccc" )
  4. public class EllaConfiguration {
  5.  
  6.  
  7. @Bean( "threadPoolExecutor" )
  8. public Executor threadPoolTaskExecutor() {
  9.  
  10. ThreadPoolTaskExecutor taskExecutor = new ThreadPoolTaskExecutor();
  11. taskExecutor.initialize();
  12.  
  13. return taskExecutor;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement