Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Guice Constructor injection or Field injection?

Tags:

java

guice

I am new to Guice. Is constructor injection preferred or field injection preferred?

Field injection appears to be quick and simple but testing would be a challenge as constructor is missing.

Thanks.

like image 972
user3706481 Avatar asked Aug 31 '25 18:08

user3706481


2 Answers

Use constructor injection

On their Minimize mutability wiki page, the Guice team says:

Minimize mutability

Wherever possible, use constructor injection to create immutable objects. Immutable objects are simple, shareable, and can be composed. Follow this pattern to define your injectable types:

[...]

Injecting methods and fields

Constructor injection has some limitations:

  • Injected constructors may not be optional.
  • It cannot be used unless objects are created by Guice. This is a dealbreaker for certain frameworks.
  • Subclasses must call super() with all dependencies. This makes constructor injection cumbersome, especially as the injected base class changes.

Method injection is most useful when you need to initialize an instance that is not constructed by Guice. Extensions like AssistedInject and Multibinder use method injection to initialize bound objects.

Field injection has the most compact syntax, so it shows up frequently on slides and in examples. It is neither encapsulated nor testable. Never inject final fields; the JVM doesn't guarantee that the injected value will be visible to all threads.

like image 54
Olivier Grégoire Avatar answered Sep 02 '25 08:09

Olivier Grégoire


Would like to point out some differences so you can decide for yourself:

  • With constructor injection you can use the final modifier. Can't do that with field injection. Advantages of final members are off-topic and you can read up on that.
  • Writing test cases with constructor injection is easy (like you already mentioned)
  • With constructor injection all dependencies are mandatory. In order to declare a class you would need to know all its required dependencies.
  • With field injection, you will hide your dependencies for the class instead of making them explicit.

Above are just a few points to think about. I personally prefer Constructor Injection because of ease of testing and final support.

like image 24
Karan Ashar Avatar answered Sep 02 '25 08:09

Karan Ashar