错误信息:
Field userService in com.lncywlc.rio.controller.LoginController required a bean of type ‘com.lncywlc.rio.service.UserService’ that could not be found.

The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type ‘com.lncywlc.rio.service.UserService’ in your configuration.
这个问题主要是马虎大意造成的。
一定要在实现类中声明服务 @Service
Autowired注入Service失败!required a bean of type 'com.lncywlc.rio.service.UserService' that could not be
当然了,如果你的问题并不是忘记声明服务,可以将
@Autowired 改成 @Resource 试一试

相关文章:

  • 2021-08-14
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2022-12-23
  • 2021-11-20
  • 2021-10-25
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-26
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
相关资源
相似解决方案