2

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.

  • @Senthilnathan You can see a good Tutorial http://stackoverflow.com/questions/1473939/ejb-lookup-failing-with-namingexception/1496306#1496306 – Arthur Ronald Mar 15 '10 at 14:29

2 Answers2

1

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
  • 588,226
  • 146
  • 1,060
  • 1,140
0

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
  • 562,542
  • 136
  • 1,062
  • 1,124