@Autowired注入的值为null

@Autowired
private ParkingRecordService parkingRecordService;
 parkingRecordService.remove()报了空指针异常
 因为我手动去new ParkingRecordController();再去调用方法就脱离了spring ioc容器的管理,parkingRecordService就为空

解决方法:
@Autowired
private ParkingRecordController parkingRecordController;
不能自己去new,使用@Autowired方法

你可能感兴趣的:(java,spring,boot)