如何告诉Spring运行该init方法?我需要获取Proxied Async类并使用它进行一些初始化。
@Configuration
@EnableAsync
public class Config {
@Bean
public AsyncBean asyncProxyBean(){
return new AsyncBean();
}
public void init(){
doStuffWithProxy(asyncProxyBean());
}
@Bean
public String thisIsHack(){ //this runs the init code but bean is a bit hacky
doStuffWithProxy(asyncProxyBean());
return "";
}
}
答案 0 :(得分:12)
您可以使用@PostConstruct
答案 1 :(得分:4)
使用@PostConstruct
注释以及:
<context:annotation-config />
或<bean class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor" />
有关详细信息,请参阅here。这是一个Java EE注释,因此可能不适合您的环境。
答案 2 :(得分:0)
BeanPostProcessor