快速业务通道

Jbuilder6.0+Weblogic6.0完成EJB开发部署 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
return vResult; } public Vector getColumnName(){ return vColumnName; } public int getUpdateResult(){ return iReturn; } /* public void ejbCreate(){ System.out.println("ejbCreate()"); } public void ejbCreate(String sqlContext){ ejbCreate(sqlContext,null); System.out.println("ejbCreate()"); } */ public void ejbCreate(String sqlContext,String[] paraValue) { this.sqlContext = sqlContext; this.paraValue = paraValue; System.out.println("ejbCreate()"); } public void ejbRemove() { } public void ejbActivate() { } public void ejbPassivate() { } public void setSessionContext(SessionContext context) { sessionContext = context; } } hello. HelloWorldHome文件(定义Home接口)如下所示: package hello; import java.rmi.*; import javax.ejb.*; public interface HelloWorldHome extends EJBHome{ public HelloWorld create(String sqlContext,String[] paraValue) throws RemoteException, CreateException; }

Jbuilder6.0+Weblogic6.0完成EJB开发部署(5)

时间:2010-12-06

客户端测试程序:

package hello; import javax.naming.*; import javax.rmi.PortableRemoteObject; import java.util.*; import java.sql.*; public class HelloWorldBeanClient1 { private static HelloWorldHome helloWorldHome = null; private static HelloWorld hello = null; static{ Context ctx = null; Hashtable ht = new Hashtable(); System.out.println("Initializing bean access."); try{ ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory"); ht.put(Context.PROVIDER_URL,"t3://localhost:7001"); ctx = new InitialContext(ht); //look up jndi name Object ref = ctx.lookup("testBean"); //cast to Home interface helloWorldHome = (HelloWorldHome) PortableRemoteObject.narrow(ref, HelloWorldHome.class); System.out.println("Get the ejbHome."); String[] paraValue = new String[]{"16"}; hello=helloWorldHome.create("hello.testSQL",paraValue); }catch(Exception e){System.out.println("cannot get the ejbBean!"+e);} } public HelloWorldBeanClient1() { Vector vInnerValue; try { //hello.setParaValue(value); //hello.setSqlContext("hello.testSQL"); hello.execute(); Vector columnName = hello.getColumnName(); Vector result = hello.getQueryResult(); for(int i=0;i { vInnerValue = (Vector)result.elementAt(i); for(int j=0;j { System.out.print(columnName.elementAt(j)+" = "); System.out.println(vInnerValue.elementAt(j)); } } //System.out.println("execute Result = "+hello.getUpdateResult()); }catch(Exception e) { System.out.println("Failed initializing bean access."); e.printStackTrace(); } } /**Main method*/ public static void main(String[] args) { HelloWorldBeanClient1 client = new HelloWorldBeanClient1(); } } }

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号