JAVA工具类中调用service为null解决方法

JAVA工具类中调用service为null解决方法

1、工具类添加*@Component*注解

2、代码中定义service

@Autowired
private AssetService assetSV;
private static AssetService assetService;

@PostConstruct
public void init() {
	 assetService = assetSV;
}

3、调用service函数

assetService.insertMonthlyList

你可能感兴趣的:(java,开发语言)