spring2 Min Read

Spring Boot - Fixing Autowire Bean Not found

Gorav Singal

January 12, 2022

TL;DR

Resolve Spring Boot autowire failures by ensuring the bean's package is included in component scanning via @ComponentScan or proper package structure.

Spring Boot - Fixing Autowire Bean Not found

Introduction

In a Spring boot app, we tend to use @Autowire annotation, so that Spring can inject our dependency. It helps in not writing the constructor explicitly and developer doesn’t need to take care of from where this bean is coming.

Example Code

  @Autowired
	private UserService userService;

At some point, we encounter errors like below:

***************************
APPLICATION FAILED TO START
***************************

Description:

Field <your-field> in com.your-package.controllers.MyController required a bean of type 'com.your-package.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.your-package.service.UserService' in your configuration.

Probable Reasons and Solutions

@Autowire searches in the spring context for the bean.

There might be few probable reasons of this error:

  • You have not defined the bean anywhere (Unless you declared the class with annotations like service/component etc, see next point). If you are using xml spring context, define the bean there.

  • You forgot to declare the class with annotations like: @Component, @Service, @Controller, @Configuration, @Repository, there might be more

(Note: above annotations are for respective purposes, so use them as per use-case)

  • You have initialized the class by explicit constructor (by new), Autowire will not work there. As, that instance will not be registered to Spring for dependency injection.

So, do not initialize a class by explicit constructor. Let spring handle it for you.

  • You have used @ComponentScan, but in wrong package. Specify the correct package there. You can specify multiple packages there as well.
@ComponentScan({ "com.path1", "com.path2", "com.path3"})
  • Your spring-boot main class (@SpringBootApplication), is located in some inner package. By default, spring boot main class, scans the child packages. So, if you have defined your main class in some inner package, move it to the top package.

  • There might be mutiple beans of same class. You need to help @Autowire, that which bean name you want to take.

Use:

  @Autowired
  @Qualifier("userService")
	private UserService userService;
  • You can specify @ComponentScan in your main class @SpringBootApplication
@SpringBootApplication(scanBasePackages = { "com.path1", "com.path2"})
public class MyApplication {

	public static void main(String[] args) throws InterruptedException {
		
		SpringApplication.run(MyApplication.class, args);
	}
}

OR

@SpringBootApplication
@ComponentScan({ "com.path1", "com.path2"})
public class MyApplication {

	public static void main(String[] args) throws InterruptedException {
		
		SpringApplication.run(MyApplication.class, args);
	}
}

Hope it helps.

Share

Related Posts

Spring - Learn Multiple Ways to use PackageScan Annotation

Spring - Learn Multiple Ways to use PackageScan Annotation

Introduction In this post, we will see multiple ways to use annotation…

How to Solve Spring Okta/Saml issue of SAML message intended destination endpoint did not match the recipient endpoint

How to Solve Spring Okta/Saml issue of SAML message intended destination endpoint did not match the recipient endpoint

Introduction I was trying to integrate Okta with Spring, and when I deploy the…

Java Log4j Logger - Programmatically Initialize JSON logger with customized keys in json logs

Java Log4j Logger - Programmatically Initialize JSON logger with customized keys in json logs

Introduction Java log4j has many ways to initialize and append the desired…

Java - Union and Intersection of two lists

Java - Union and Intersection of two lists

Suppose you have two lists, and you want Union and Intersection of those two…

Linkage Error Loader Constraint Violation - JUnit test case development issue

Linkage Error Loader Constraint Violation - JUnit test case development issue

Its good to write unit tests cases, and this part is mostly forgotten by…

How to mock a constructor - Junit test case development issues

How to mock a constructor - Junit test case development issues

While writing JUnit test cases, we encounter cases like we want to initialize a…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…