JAVAWarningFramework ErrorMay 13, 2026

Framework Error

Could not autowire. No beans of 'UserService' type found.

What This Error Means

This error occurs when the Spring Framework is unable to autowire a dependency, which is typically a bean or a service, into a component or a class. It is often caused by a misconfigured or missing bean definition.

Why It Happens

This error happens because Spring Framework is unable to find a bean of the required type ('UserService') in the application context. This could be due to a variety of reasons such as a typo in the bean name, a missing @Bean annotation, or a incorrect bean scope.

How to Fix It

  1. 1To fix this error, ensure that the 'UserService' bean is correctly defined in the application context. You can do this by adding the @Bean annotation to the UserService class or by adding a @Service annotation to the UserService class and making sure it is scanned by the Spring Framework. Additionally, check that the bean scope is correct and that the dependency is correctly injected into the component or class.

Example Code Solution

❌ Before (problematic code)
Java
// UserService.java

import org.springframework.stereotype.Service;
springframework.beans.factory.annotation.Autowired;

class UserService {
    private UserRepository userRepository;

    @Autowired
    public UserService(UserRepository userRepository) {
        this.userRepository = userRepository;
    }
}

// Application.java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

class Application {
    @Bean
    public UserService userService() {
        return new UserService(userRepository());
    }
}
✅ After (fixed code)
Java
// UserService.java

import org.springframework.stereotype.Service;

class UserService {
    private final UserRepository userRepository;

    @Autowired
    public UserService(UserRepository userRepository) {
        this.userRepository = userRepository;
    }
}

// Application.java

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

class Application {
    @Bean
    public UserService userService() {
        return new UserService(userRepository());
    }

    @Bean
    public UserRepository userRepository() {
        return new UserRepository();
    }
}

Fix for Could not autowire. No beans of 'UserService' type found.

Related JAVA Errors

Related JAVA Blog Articles

Have a different error? Get an instant explanation.

Explain Another Error