| Author |
create ( ) in Home Interface
|
jay roy
Ranch Hand
Joined: Nov 16, 2006
Posts: 145
|
|
hi guys We write create() in the home interface which extends EJBHome.But suprisingly, the create() doesnt exist in the EJBHome API, meaning the create() is defined by bean developer. So can i change the name of create() to createMyBean(). If yes, where else will i have to make changes? thanks jtc
|
 |
Muhammad Asif
Ranch Hand
Joined: Jul 13, 2001
Posts: 202
|
|
It depends on the type of the bean that you are developing. All the create methods need to have a matching ejbCreate in the bean class. I think for stateless session beans you need to have only one no-argument create method.
|
SCJP, SCBCD, SCWCD 1.4, IBM-OOAD, SCEA, TCP, TCSS, TCIS, ATCP
|
 |
jay roy
Ranch Hand
Joined: Nov 16, 2006
Posts: 145
|
|
thanks for reply asif so if i change from create() to createMyMethod() in home interface, do i change ejbCreate() to ejbcreateMyMethod() for stateless session beans. thanks J
|
 |
 |
|
|
subject: create ( ) in Home Interface
|
|
|