How can I tell Spring to run this init method? I need to get the Proxied Async class and do some initialization with it.
@Configuration @EnableAsync public class Config { @Bean public AsyncBean asyncProxyBean(){ return new AsyncBean(); } public void init(){ doStuffWithProxy(asyncProxyBean()); } @Bean public String thisIsHack(){
source share