I have question about this points: EJBs, Eclipse, WebLogic. I looked at a lot of topics but I can't find reliable pieces of information about all that stuff.
I have to write me first stateless and my first stateful EJBs.
I create an interface, let's call it IA, and a class, let's call it A, which implements IA.
A is tagged @Stateless.
Here is the code:
@Stateless(name = "IEjbProductList", mappedName = "IEjbProductList")
public class EjbProductList implements IEjbProductList{
public ArrayList<ProductBean> getProductList(){
ProductBean p1 = new ProductBean("id1", "choucroute",0.12,15);
ProductBean p2 = new ProductBean("id2", "cassoulet",2.18,17);
ArrayList<ProductBean> productList = new ArrayList<ProductBean>();
productList.add(p1);
productList.add(p2);
return productList;
}
}
I import this class and all jars i have to in another class, test it, and it works.
Now, I try to change A to be stateful. It seems that just changing @Stateless to @Stateful should work. However, it raises a NamingException with the following explanation: Unhandled exception in lookup.
Is there some other changes I not aware about I should do?