A new article on the Java Developer Connection begins with a review of the EJB 2.0 CMP and then shows how to apply the new local model and to implement session and entity beans that use CMP and CMR, with a real example.
Read EJB 2.0 CMP Example.
-
EJB 2.0 container managed persistence example (11 messages)
- Posted by: Floyd Marinescu
- Posted on: July 27 2001 17:52 EDT
Threaded Messages (11)
- EJB 2.0 container managed persistence example by Indranil Banerjee on July 28 2001 04:26 EDT
- EJB 2.0 container managed persistence example by Gurusamy Narayanan on July 28 2001 08:37 EDT
-
EJB 2.0 container managed persistence example by Nick Minutello on July 30 2001 07:07 EDT
-
EJB 2.0 container managed persistence example by Sam He on July 30 2001 09:54 EDT
-
EJB 2.0 container managed persistence example by Reema Patel on July 30 2001 10:30 EDT
- EJB 2.0 container managed persistence example by Olivier Brand on July 30 2001 12:17 EDT
-
EJB 2.0 container managed persistence example by Hemant Khandelwal on July 31 2001 12:23 EDT
- EJB 2.0 container managed persistence example by Sam He on July 31 2001 02:13 EDT
-
EJB 2.0 container managed persistence example by Reema Patel on July 30 2001 10:30 EDT
-
EJB 2.0 container managed persistence example by Sam He on July 30 2001 09:54 EDT
-
EJB 2.0 container managed persistence example by Nick Minutello on July 30 2001 07:07 EDT
- EJB 2.0 container managed persistence example by Gurusamy Narayanan on July 28 2001 08:37 EDT
- EJB 2.0 container managed persistence example by Nayyer Kamran on August 02 2001 02:17 EDT
- EJB 2.0 container managed persistence example by raymond domingo on September 12 2001 09:42 EDT
- EJB 2.0 container managed persistence example by paxson yang on January 21 2002 08:12 EST
-
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Indranil Banerjee
- Posted on: July 28 2001 04:26 EDT
- in response to Floyd Marinescu
All great stuff. But does anyone know when vendors are going to support EJB2.0?
Also people will need guidance on migrating 'legacy' 1.1 applications to 2.0 -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Gurusamy Narayanan
- Posted on: July 28 2001 08:37 EDT
- in response to Indranil Banerjee
Weblogic6.0 already implement ejb2.0 and
J2EE from wrox mentioned how to establish realationship in ejb1.1 exsiting component -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Nick Minutello
- Posted on: July 30 2001 07:07 EDT
- in response to Gurusamy Narayanan
Actually, unless I am mistaken, WLS 6.0 implemented the previous PFD1 of EJB2.0 (which as you remember differs greatly from PDF2).
WLS6.1 (now in beta - but should be GA'ed soon I am told) supports the latest version of EJB2.0.
-
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Sam He
- Posted on: July 30 2001 09:54 EDT
- in response to Nick Minutello
There is an India software company annouced they have already implemented the current final draft (it has been posted in this site, but i do not remember the company name). I certaily hope WLS6.1 will implement the final spec. -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Reema Patel
- Posted on: July 30 2001 10:30 EDT
- in response to Sam He
And I think the name of that software company (indian) is Pramati (most probably).
-
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Olivier Brand
- Posted on: July 30 2001 12:17 EDT
- in response to Reema Patel
The company you are talking about might be: objectfrontier (www.objectfrontier.com).
They are supporting EJB2.0 and JDO, with a caching mechanism. -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Hemant Khandelwal
- Posted on: July 31 2001 00:23 EDT
- in response to Reema Patel
bull's eye.
Hemant
www.pramati.com -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Sam He
- Posted on: July 31 2001 14:13 EDT
- in response to Hemant Khandelwal
Now WebLogic 6.1 is released with EJB 2.0 (the current draft) implemented. see another discussion posted by Floyd today -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: Nayyer Kamran
- Posted on: August 02 2001 02:17 EDT
- in response to Floyd Marinescu
Great stuff but what I feel one thing missing are the deployment descriptors. it clears alot while going through some deployment descriptors. you have given only the localinterfaces, I think puting remote interface for customer in the example make this stuff more fruitefull. yet good work. I would be grateful if u publish deployment descriptors in this discussion.
thanks
Kamran -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: raymond domingo
- Posted on: September 12 2001 09:42 EDT
- in response to Nayyer Kamran
Finaly an example is posted, but did any one find out how the tables (sql) should look like ??? -
EJB 2.0 container managed persistence example[ Go to top ]
- Posted by: paxson yang
- Posted on: January 21 2002 08:12 EST
- in response to Floyd Marinescu
Hi, guys
I had write a application which use CMP & CMR to process
the DB manipulation.And i also use Value Object to return
the snapshot copy of the Entity Bean.The question is that
how should i use a collection of Value Object to persistent
the CMR field in my "One" side Entity Bean's CMR field.
Now i use the solution that delete the "Many" side table first(use DAO), and then i use the Value Object to update my "One" side Entity Bean.After that,i use the same Value Object's CMR field to create the Many side Entity Bean.
I wonder is there has a better solution to solve this kind of problem?
thanks!