EJB and JDO
Session EJB Facade to JDO Objects
Note |
To
work with any of these samples, you will need the
following: .........................................JDK 1.2 or higher (I use JDK 1.3.1) .........................................PE:JTM - The Productivity Environment for JavaTM (from HYWY Software Corporation) |
Note: This article assumes that the reader has already created simple bank project using PE:J and JDO. |
com\hywy\samples\ejb20\session\stateless\TellerHome.java |
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: |
* The following example illustrates * a Session Facade to a JDO object * * author: Gopalan Suresh Raj * Copyright (c), 2002. All Rights Reserved. * URL: https://gsraj.tripod.com/ * email: gopalan@gmx.net */ package com.hywy.samples.ejb20.session.stateless; import java.rmi.RemoteException; import javax.ejb.CreateException; import javax.ejb.EJBHome; /** * This interface is the home interface for the TellerBean.java * * A home interface may support one or more create * methods, which must correspond to methods named "ejbCreate" in the EJBean. * * @author Gopalan Suresh Raj. */ public interface TellerHome extends EJBHome { /** * This method corresponds to the ejbCreate method in the bean * "TellerBean.java". * The parameter sets of the two methods are identical. When the client calls * <code>TellerHome.create()</code>, the container * allocates an instance of the EJBean and calls <code>ejbCreate()</code>. * * @return Teller * @exception RemoteException if there is * a communications or systems failure * @exception CreateException * if there is a problem creating the bean * @see com.hywy.samples.ejb20.session.stateless.TellerBean */ Teller create() throws CreateException, RemoteException; } |
Session EJB Facade to JDO Objects |
Teller.java |
TellerHome.java |
TellerBean.java |
Client.java |
build.xml |
application.xml |
ejb-jar.xml |
weblogic-ejb-jar.xml |
click here to go to
My JDO
HomePage...
click here to go
to
My
Advanced Java Tutorial Page...
About the Author... |
Gopalan Suresh Raj is a Software Architect, Developer and an active Author. He has co-authored a number of books including "Professional JMS", "Enterprise Java Computing-Applications and Architecture" and "The Awesome Power of JavaBeans". His expertise spans enterprise component architectures and distributed object computing. Visit him at his Web Cornucopia© site (https://gsraj.tripod.com/) or mail him at gopalan@gmx.net. |
This site was developed and is maintained by Gopalan Suresh Raj This page has been visited times since February 26,2002. |
Last Updated : Feb 26, 2002 |
Copyright (c) 1997-2002, Gopalan Suresh Raj - All rights reserved. Terms of use. |
All products and companies mentioned at this site are trademarks of their respective owners. |