spring boot @Autowired 注入的服务为null

spring boot @Autowired 注入的服务为null
技术博客 http://idea.coderyj.com/

1.今天调试代码发现 @Autowired 注入的服务都是null 经过排查发现 是函数的权限不够,应该把private改成 public解决问题
  • 修改前
@PostMapping("handelAllCharge")
private JsonUtil handelAllCharge(@RequestBody Charger2FireDoorBean charger2FireDoorBean)
  • 修改后
@PostMapping("handelAllCharge")
public JsonUtil handelAllCharge(@RequestBody Charger2FireDoorBean charger2FireDoorBean)

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