1. 程式人生 > >Error creating bean with name 'menuController': Injection of autowired dependency……

Error creating bean with name 'menuController': Injection of autowired dependency……

出現了一大串錯誤

Error creating bean with name 'userController': Injection of autowired dependencies failed。。。。。 


查了程式碼後發現,原來是在UserServiceImpl中忘了寫一句話@Service("userService"),以至於因此導致一系列錯誤。

在控制層呼叫業務層,必須在業務層先進行註解:

@Service("userService");

然後在控制層注入業務層:

@Resource
private IUserService userService;