Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes EJB and other Java EE Technologies and the fly likes on ejbRemove() method... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "on ejbRemove() method..." Watch "on ejbRemove() method..." New topic
Author

on ejbRemove() method...

Gurumurthy Ramamurthy
Ranch Hand

Joined: Feb 13, 2003
Posts: 272
Guys,

I have a simple EJB bean class.

import javax.ejb.*;
public class HelloBean implements javax.ejb.SessionBean
{
private SessionContext ctx;

public void ejbCreate()
{
System.out.println("ejbCreate()");
}

public void ejbRemove()
{
System.out.println("ejbRemove()");
}

public void ejbActivate()
{
System.out.println("ejbACtivate()");
}

public void ejbPassivate()
{
System.out.println("ejbPassivate()");
}

public void setSessionContext(javax.ejb.SessionContext ctx)
{
this.ctx=ctx;
}

public String hello()
{
System.out.println("Hello World EJB");
return "Hello World EJB return this time with SUNIL";
}
}

When I invoke my client, it displays the string from ejbCreate() but the string inside the ejbRemove() method is not at all called. WHY?

Thanks,
Guru
Maybach Smith
Greenhorn

Joined: Dec 22, 2004
Posts: 15
In Session Beans,the ejbRemove() can be called by the container at any time.The bean could be returned back to the pooled state or it can be removed.This implementation would be container specific.

This has been clearly specified in Ed Roman as follows -
Note that some containers will give slightly different outputs than others - it is all implementation specific and is part of EJB product documentation.
We need to keep this in mind while debugging.

Hope this helps.


Maybach
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: on ejbRemove() method...
 
Similar Threads
controlling ejbTimeout EJB 2.1
JBOSS error with helloworld
WebLogic server-not getting the component interface right
Getting a SocketOrChannelConnectionImpl in Weblogic
how to deploy ejb on sun application