Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I see that Spring has a @Required annotation to mark member variables in beans that must be set.

Is there a best practice for using this?

For instance, might it be better to set these values in the constructor and make these parameters explicitly required (esp. when used outside of Spring)?

Thanks!

share|improve this question

2 Answers

up vote 5 down vote accepted

While not referring to the @Required annotation directly, Martin Fowler provides this advice...

He prefers to set object values in the constructor rather than in setters as it will "give you a clear statement of what it means to create a valid object in an obvious place" while it also "allows you to clearly hide any fields that are immutable by simply not providing a setter".

share|improve this answer
1  
Further, setting/instantiating variables in the constructor allows you to declare them as final. A final variable, along with providing clear intent of usage (as you suggested), is a step towards achieving immutability (worthwhile if your object needs to be thread-safe). – CaptainHastings Jul 20 '11 at 21:01

See the following poll on Spring Community forums for a discussion of approaches.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.