资源依赖项注入失败: org.springframework.beans.factory.BeanCreationException: Error creating bean with name

异常:Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘userController’: Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type ‘com.example.service.UserService’ available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}

今天在运行springboot整合jpa的项目时,遇到了上面的异常。百度查找之后才知道是我的“userController”类资源依赖项注入失败,因为”UserService”的实现类没有自动注入的资格,需要在”UserService”的实现类上面注解@Component,代码如下:

public class UserController {
    @Resource
    private UserService userService;
@Component
public class UserServiceImp implements UserService {
    @Autowired
    private UserRepository userRepository;

注解之后再运行项目,问题解决!

猜你喜欢

转载自blog.csdn.net/weixin_42870683/article/details/82713750
今日推荐