i have my field like that
@Autowired
private QualiteRepo qualiteRepo;
@Autowired
private FonctionRepo fonctionRepo;
@Autowired
private DomaineRepo domaineRepo;
@Autowired
private DivisionRepo divisionRepo;
[...]
Can i regroup them by using @Autowired
just one time ? i try this but it didn't work :
@Autowired
private QualiteRepo qualiteRepo;
private FonctionRepo fonctionRepo;
private DomaineRepo domaineRepo;
private DivisionRepo divisionRepo;
[...]