tags:

views:

181

answers:

3

Hi I am beginner to EJB concept. I just read creating stateless session bean !! Here we create 2 interface and a bean.

In that Home Interface we use a method create for creating instances.

But is that create() method a keyword. It is not showing anything in eclipse.

It will good if some can post how to create simple hello world stateless session bean.

Thanks in advance.

A: 

This tutorial has examples on both stateless and stateful beans. Take a look. It is from OpenEJB but this shouldn't bother you - all EJB implementations conform to the EJB specification.

Bozho
That tutorial is quite dated (1999) and does not cover EJB3.
Matthieu Cormier
@Matthieu Cormier thanks. I updated my answer with a fresher one
Bozho
A: 

If you can use EJB3, I recommend that you do as it is much simpler to use. Mateusz Mrozewski has a 4 part tutorial on his blog that covers EJB3.

Matthieu Cormier
A: 

Not sure what you're looking for. Your question is tagged EJB 3 but you are mentioning EJB 2 concepts. So, unless you explicitly want to learn EJB 2 to understand how things were done in old times, I suggest to look at EJB 3 resources, e.g. the Chapter 22, Session Bean Examples of the Java EE 5 tutorial.

Pascal Thivent