- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Fwd: Re: Using Scala Managed Bean with JSF
Wed, 2011-09-14, 21:10
On Tue, Sep 13, 2011 at 3:11 AM, Lars Hupel <hupel@in.tum.de> wrote:
> <managed-bean>Don't use faces-config.xml--it's no longer necessary with JSF 2.0.
> <managed-bean-name>jcoe.bookapp.bookController</managed-bean-name>
> <managed-bean-class>BookController</managed-bean-class>
> <managed-bean-scope>session</managed-bean-scope>
> </managed-bean>
Are you sure that you want your bean name prefixed, and not the bean class?
Managed beans work fine when written in Scala.
But be careful with EJB session beans--you need to annotate them as @LocalBean because the scala.scalaObject trait confuses the app server.