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.

The Weld documentation states that the javax.enterprise.inject.Model annotation is designed for Controllers (logical because it marks bean as @RequestScoped and @Named).

But why is it named as Model instead of Controller?

share|improve this question
Should I use Model or write my own stereotype annotation named as Controller for controller classes of my JSF application? – Deniz Mar 28 '12 at 12:38
1  
Your question raises a valid point which I cannot answer. However, don't worry too much about writing your own annotation - if you feel like using @Controller over @Model, just do it. CDI's typesafe qualification mechanism is designed to give you maximum flexibility in expressing your logic. – jan groth Mar 29 '12 at 11:06

1 Answer

Because the specification does not assume you use a pattern that involves having controllers in the first place.

There's other patterns and naming conventions out there. For example seam uses a "Action" instead of "Controller" (all though those concepts do not map entirely)

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.