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?
|
The Weld documentation states that the But why is it named as Model instead of Controller? |
||||
|
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) |
|||
|
|
@Controllerover@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