[jboss-user] [JBoss Seam] - Re: Stateless Session Bean and @Out

2007-11-15 Thread jfrankman
Thanks Pete for the answers. That helps me alot. I will crack open an EJB book this weekend to get a little more detail. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105161#4105161 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Seam] - Re: Stateless Session Bean and @Out

2007-11-15 Thread [EMAIL PROTECTED]
1) The stateless scope is not very useful - put that bean into EVENT scope and it makes more sense 3) True, as the obtaining the instance is managed by EJB3 so instance variables won't be remembered 4) True. SLSB is useful when your data needs no state (e.g. view only). View the original post :

[jboss-user] [JBoss Seam] - Re: Stateless Session Bean and @Out

2007-11-15 Thread jfrankman
>From the documentation for the @Out annotation: Specifies the scope to outject to. If no scope is explicitly specified, the default scope depends upon whether the value is an instance of a Seam component. If it is, the component scope is used. Otherwise, the scope of the component with the @Ou

[jboss-user] [JBoss Seam] - Re: Stateless Session Bean and @Out

2007-11-15 Thread monkeyden
I might have guessed that CONVERSATION scope was the default but why are you opposed to specifying it? I think it will be outjected to CONVERSATION if the bean itself had this as it's scope. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4105095#4105095 Repl