Raman Joshi
Raman Joshi

Reputation: 71

How many ways to inject the bean automatically in spring?

I am new in spring framework and I want to know that how many different ways in spring to inject bean automatically.

Upvotes: 0

Views: 142

Answers (1)

Kundan Ray
Kundan Ray

Reputation: 370

There are three ways you can autowire the bean.

  1. byType
  2. byName and
  3. Constructor

Upvotes: 1

Related Questions