用@Lazy解决循环依赖问题
问题描述:
springboot出现循环依赖问题,尝试多个方法无法解决,最后发现@Lazy导包导错
解决方案:
注入依赖时加上@Lazy注解
@Resource @Lazy // 避免循环依赖 private FinancialAidCollegeManageService financialAidCollegeManageService;
注意:导入的包一定是
import org.springframework.context.annotation.Lazy;