I'm new to asynchronous task execution in Spring, so please forgive me if this sounds like a silly question.
I read that @Async annotation is introduced from Spring 3.x onward at method level to invocation of that method will occur asynchronously. I also read that we can configure the ThreadPoolTaskExecutor in the spring config file.
What I'm not able to understand is that how to call a @Async annotated method from a tak executor lets suppose - AsyncTaskExecutor
Earlier we used to do something like in a class:
@Autowired protected AsyncTaskExecutor executor;
And then
executor.submit(<Some Runnable or Callable task>)
I'm not able to understand the relationship between @Async annotated methods and TaskExecutor.
I tried searching a lot over the internet but could not get anything on this.
Can somebody provide an example for the same.