Reputation: 61
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.
Upvotes: 4
Views: 5798
Reputation: 141
Both the types are fine. But you need to know when and where you need to use constructor injection.
Advantages of Constructor injection are,
In Constructor Injection you can use something like this.
public class MemberResource {
private final IMemberService memberService;
@Inject
public MemberResource(IMemberService memberService) {
this.memberService = memberService;
}
}
Advantage of Field injection is less coding.
Upvotes: 0
Reputation: 35417
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.
Upvotes: 6
Reputation: 1400
Would like to point out some differences so you can decide for yourself:
final
modifier. Can't do that with field injection. Advantages of final
members are off-topic and you can read up on that.Above are just a few points to think about. I personally prefer Constructor Injection because of ease of testing and final
support.
Upvotes: 3