RestController里面@Autowired 之后的Service对象为Null

遇到一种情况,一个Service,在两个RestController(@RestController)里面的方法调用,一个正常,一个为null,两个RestController的其他方法都能正确访问。

原因是 在Service为null的那个RestController里面,方法不是public的……

例如:

 @RequestMapping("/token/generate")
      ResultVO> generate(@NotBlank(message = "帐号不能为空") @RequestParam String account, @RequestParam String password) throws UnsupportedEncodingException {
//……
    }

修改为

 @RequestMapping("/token/generate")
   public   ResultVO> generate(@NotBlank(message = "帐号不能为空") @RequestParam String account, @RequestParam String password) throws UnsupportedEncodingException {
//……
    }

即可。

你可能感兴趣的:(RestController里面@Autowired 之后的Service对象为Null)