Commit e1b7b1db authored by suhuiguang's avatar suhuiguang

1.循环依赖启动报错

parent ae8b90a2
......@@ -8,6 +8,7 @@ import com.yeejoin.amos.boot.module.cylinder.api.service.ICylinderQuestionInfoSe
import com.yeejoin.amos.boot.module.cylinder.biz.job.CompanyQuestionJob;
import com.yeejoin.amos.boot.module.cylinder.biz.job.InspectionQuestionJob;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import org.typroject.tyboot.core.rdbms.annotation.Condition;
import org.typroject.tyboot.core.rdbms.annotation.Operator;
......@@ -23,9 +24,11 @@ import org.typroject.tyboot.core.rdbms.service.BaseService;
public class CylinderQuestionInfoServiceImpl extends BaseService<CylinderQuestionInfoDto, CylinderQuestionInfo, CylinderQuestionInfoMapper> implements ICylinderQuestionInfoService {
@Autowired
@Lazy
CompanyQuestionJob companyQuestionJob;
@Autowired
@Lazy
InspectionQuestionJob inspectionQuestionJob;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment