| Author |
EJB Question
|
Prasad Kuppa
Ranch Hand
Joined: Apr 01, 2002
Posts: 151
|
|
Hi, Here is a question from one of the mock exams. In CMP Entity Beans, which of the following statements is true? a. The Entity Bean Class should not define any constructors b. The Entity Bean class must define a no-argument constructor The answer provided is (a). But is it correct? I don't see this in the EJB Spec. I think there is nothing wrong if the bean class provides empty constructor. Can anyone explain? Thanks, Prasad
|
 |
Goutam Bhattacharjee
Ranch Hand
Joined: Aug 05, 2003
Posts: 44
|
|
|
I think the catch lies in the sentence construction of the 2nd choice. Obvioulsy u can define a no-arg constructor, but is not mandatory. Thus ths 2nd choice which says: "must define a no-arg constructor" would not qualify
|
gb
|
 |
Stevica Vucicevic
Greenhorn
Joined: Jan 07, 2005
Posts: 10
|
|
hi! a) is write as you do not define a constructor in the implementation of an EJB, because there is the ejbCreate method, you use to create the bean. There is no impact if it is a BMP or CMP bean! Look at the implementations in your guides, there is never any constructor, a class should normally have. cheers stevica
|
 |
Dan Drillich
Ranch Hand
Joined: Jul 09, 2001
Posts: 1129
|
|
Obviously the constructors don't play any role in CMP Entity Beans; all the creation is done via the ejbCreate method. Prasad said:
I think there is nothing wrong if the bean class provides empty constructor.
There is nothing wrong with it, but providing this constructor doesn't serve any purpose. BTW, I do see this constructor in a WebLogic 8.1 example. \bea\weblogic81\samples\server\examples\src\examples\ejb20\basic\containerManaged\AccountBean.java I also didn't see any reference to this issue in the SUN FAQ EJB Restrictions page: http://java.sun.com/blueprints/qanda/ejb_tier/restrictions.html#threads Regards, Dan
|
William Butler Yeats: All life is a preparation for something that probably will never happen. Unless you make it happen.
|
 |
Prasad Kuppa
Ranch Hand
Joined: Apr 01, 2002
Posts: 151
|
|
I am clear. Thank you all. Prasad
|
 |
 |
|
|
subject: EJB Question
|
|
|