当前位置: 技术问答>java相关
jsp与ejb问题
来源: 互联网 发布时间:2015-07-09
本文导语: 请问大虾如何用jsp调用ejb组件 | 给你一个例子: Converter Converter Enter an amount to convert: 0 ) { BigDecimal d = new BigDecimal (amount); %> dollars are Ye...
请问大虾如何用jsp调用ejb组件
|
给你一个例子:
Converter
Converter
Converter
Converter
Enter an amount to convert:
0 ) {
BigDecimal d = new BigDecimal (amount);
%>
dollars are
Yen.
Yen are
Euro.
jsp调用ejb组件,只有你对j2ee应用工程部署后才能运行。
|
try {
Context initial=getContextInfo();
Object objref=initial.lookup("Menu");
MenuHome home=(MenuHome)javax.rmi.PortableRemoteObject.narrow(objref,MenuHome.class);
Menu menu=home.create();
menu.addDish("Tomato Soup");
menu.addDish("Sausage and Mash");
menu.addDish("Apple pie");
System.out.println(menu.checkStock());
} catch(Exception e) {
System.out.println(e);
}
Context initial=getContextInfo();
Object objref=initial.lookup("Menu");
MenuHome home=(MenuHome)javax.rmi.PortableRemoteObject.narrow(objref,MenuHome.class);
Menu menu=home.create();
menu.addDish("Tomato Soup");
menu.addDish("Sausage and Mash");
menu.addDish("Apple pie");
System.out.println(menu.checkStock());
} catch(Exception e) {
System.out.println(e);
}