We have a Spring web application we\'re porting from Spring 3.2 to Spring 4. Our application has several sub-contexts assembled into a single runtime context when the web appli
Just add bean to your config:
@Bean() public ThreadPoolTaskScheduler taskScheduler() { return new ThreadPoolTaskScheduler(); }