I'm using Spring 3.0.x with my project.
My current practice with @Autowired is exemplified as follows:
@Autowired
private SomeType someMemberVariable;
Is the use of a setter method better and/or preferred? By setter, I mean the following:
private SomeType someMemberVariable;
@Autowired
private void setSomeMemberVariable(SomeType newValue)
{
someMemberVariable = newValue;
}
I understand mutable vs immutable setters, that is out of scope for this question.