Is it possible to turn a Managed bean into an Enterprise Managed Bean? Would you give some example?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For turning a POJO bean class into an EJB, add the
@Statelessof@Statefulannotation and implement the@Remoteor@Local(or both) interfaces. Of course some additional configuration steps will be necessary, but that depends on the particular application server you’re using.Do something along these lines: