赞
踩
@Autowired
CouponBatchService couponBatchServiceBean;
//由于静态方法无法使用注入的Bean 定义静态变量
private static CouponBatchService couponBatchService;
//当容器实例化当前受管Bean时@PostConstruct注解的方法会被自动触发,借此来实现静态变量初始化
@PostConstruct
public void init(){
couponBatchService = this;
}
public static void test(String test) {
couponBatchService.bind(test);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。