Eclipse+JBoss+EJB3使用SessionBean的本地接口

有时客户端程序(如JSP、Servlet)会和EJB组件运行在同一个JVM上,如在同一个J2EE服务器(JBoss、Weblogic等)中运行。这时就没必要

成都创新互联于2013年成立,先为荣县等服务建站,荣县等地企业,进行企业商务咨询服务。为荣县企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。

再通过远程(remote)接口访问Session Bean了,因为客户端和session bean都在同一个jvm上,只需要通过本地接口(local)访问即可。就象直接访问本地类一样(当然,不能直接访问EJB类,需要使用jndi和 local接口来获得本地接口对象。当然,也可以通过remote接口来访问ejb,不过这样会有一些性能损失。就象在同一台机器上还通过socket进行访问一样,很多性能都损耗在网络上了。下面我们来举个简单的例子来看一下如何使用本地接口来访问session bean。
    先建立一个session bean本地接口,代码如下:

 

      
      
      
  1. package service;  
  2.  
  3. import java.util.List;  
  4. import javax.ejb.Local;  
  5.  
  6. @Local  
  7. public interface ShoppingCart  
  8. {  
  9.     //  添加某个商品信息  
  10.     public void addCommodity (String value);  
  11.     //  获得客户购买的所有商品的纱衔泥  
  12.     public List getCommodity();  

 

关于Session Bean的具体实现类与远程接口的实现类一样,读者可以参考《编写有状态的SessionBean》一文中的ShoppingCartBean类。

下面在Eclipse中新建立一个Web工程(工程名:JBossWeb),该工程需要引用MyEJB工程(包含EJB组件的工程),在WebContent目录中建立一个test.jsp页面,代码如下:

 

      
      
      
  1. <%@ page language="java" contentType="text/html; charset=GB18030" 
  2.     pageEncoding="GB18030" import="java.util.List,java.util.Propert     
  3. javax.naming.InitialContext,service.ShoppingCart"%> 
  4. > 
  5.  
  6.  
  7.  http-equiv="Content-Type" content="text/html; charset=GB18030"> 
  8. </strong>Insert title here<strong> title></strong> </li> <li><strong> head></strong> </li> <li><strong><body></strong> </li> <li> </li> <li><strong> body></strong> remote  </li> <li><strong><</strong>%  </li> <li>    Properties prop = new Properties();  </li> <li>    InitialContext ctx = new InitialContext();          </li> <li>    ShoppingCart shoppingCart = (ShoppingCart) ctx  </li> <li>        .lookup("ShoppingCartBean/local");  </li> <li>    shoppingCart.addCommodity("自行车");  </li> <li>    shoppingCart.addCommodity("笔记本电脑");  </li> <li>    shoppingCart.addCommodity("液晶电视");  </li> <li>    List<strong><String></strong> commodities = shoppingCart.getCommodity();  </li> <li>    for(String commodity: commodities)  </li> <li>    {  </li> <li>        System.out.println(commodity);  </li> <li>    }   </li> <li>%<strong>></strong> </li> <li><strong> html></strong> </li> </ol></pre> </td></tr></tbody></table><p> </p><p>访问本地接口要使用的jndi name应为“ShoppingCartBean/local”。<br />启动JBoss,在浏览器中输入如下的URL:<br />http://localhost:8080/JBossWeb/test.jsp<br />在Eclipse的Console中会输出如下的信息:</p><table cellspacing="0" cellpadding="2" width="400" border="1"> <tbody> <tr><td><pre><p> </p><pre> <ol> <li>16:55:17,633 INFO  [STDOUT] 自行车  </li> <li>16:55:17,633 INFO  [STDOUT] 笔记本电脑  </li> <li>16:55:17,633 INFO  [STDOUT] 液晶电视  </li> </ol></pre> </td></tr></tbody></table> <p> 当前标题:<a href="http://www.mswzjz.cn/qtweb/news22/122522.html">Eclipse+JBoss+EJB3使用SessionBean的本地接口</a> <br> 分享路径:<a href="http://www.mswzjz.cn/qtweb/news22/122522.html">http://www.mswzjz.cn/qtweb/news22/122522.html</a> </p> <p> 攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等 </p> <p class="adpic"> <a href="https://www.cdcxhl.com/service/ad.html" target="_blank" class="ad">广告</a> <a href="" target="_blank" class="adimg"><img src=""></a> </p> <p class="copy"> 声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: <a href="http://www.mswzjz.cn/" target="_blank">贝锐智能</a> </p> </div> <div class="newsmorelb"> <p>贝锐智能技术为您推荐以下文章</p> <ul> <li> <a href="/qtweb/news21/122521.html">傲软录屏在哪里设置快捷键_傲软录屏快捷键一览</a> </li><li> <a href="/qtweb/news20/122520.html">扬州云服务器,让你的网站轻松上云!</a> </li><li> <a href="/qtweb/news19/122519.html">Linux怎么修改用户密码?linux服务器修改密码命令</a> </li><li> <a href="/qtweb/news18/122518.html">C语言实现数据库连接池,提升数据库操作效率 (用c 实现数据库连接池)</a> </li><li> <a href="/qtweb/news17/122517.html">word运行时错误429</a> </li><li> <a href="/qtweb/news16/122516.html">防火墙正确设置方法?(服务器怎么设置禁用防火墙)</a> </li><li> <a href="/qtweb/news15/122515.html">安全传输</a> </li><li> <a href="/qtweb/news14/122514.html">云虚拟主机和虚拟主机区别是什么?</a> </li><li> <a href="/qtweb/news13/122513.html">专家如何分析无服务器的云成本</a> </li> </ul> </div> </div> <div class="col-lg-3 noneb"> <div class="bkright" style="margin-top: 0"> <p><a href="https://www.cdcxhl.com/news/yidongjianshe/">移动网站建设知识</a></p> <ul> <li> <a class="text_overflow" href="/qtweb/news4/454.html">谁能提供香港高防主机租用服务,如何申请香港高防主机租用</a> </li><li> <a class="text_overflow" href="/qtweb/news49/6649.html">vps速度如何优化</a> </li><li> <a class="text_overflow" href="/qtweb/news0/341500.html">小马windows10激活密钥?(小马win10激活码)</a> </li><li> <a class="text_overflow" href="/qtweb/news17/404717.html">什么是弹性负载均衡状态</a> </li><li> <a class="text_overflow" href="/qtweb/news10/488360.html">香港服务器租用香港服务器租用香港服务器(香港服务器租用网站)</a> </li><li> <a class="text_overflow" href="/qtweb/news41/55441.html">云服务器怎么开启声音权限</a> </li><li> <a class="text_overflow" href="/qtweb/news0/475400.html">suseselinux</a> </li><li> <a class="text_overflow" href="/qtweb/news26/554076.html">外国服务器怎么租用?(国外服务器租用价格怎么算)</a> </li><li> <a class="text_overflow" href="/qtweb/news22/23672.html">如何在Linux上安装Telnet?(linux怎么安装telnet)</a> </li><li> <a class="text_overflow" href="/qtweb/news48/317748.html">vip域名怎么样?(vip域名如何)</a> </li><li> <a class="text_overflow" href="/qtweb/news5/374505.html">超级程序员神话</a> </li><li> <a class="text_overflow" href="/qtweb/news47/195147.html">Python服务器:一种高效可靠的网络编程语言(服务器用python)</a> </li><li> <a class="text_overflow" href="/qtweb/news26/137576.html">彻底杜绝影子IT的四个实用步骤</a> </li><li> <a class="text_overflow" href="/qtweb/news15/296715.html">天翼云弹性云主机防火墙怎么样?</a> </li><li> <a class="text_overflow" href="/qtweb/news28/279578.html">Linux下快速删除文件夹链接(linux删除文件夹链接)</a> </li> </ul> </div> <div class="bkright tag"> <p><a href="https://www.cdcxhl.com/hangye/link.html" target="_blank">各行业网站</a></p> <ul> <li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/blgzd/" target="_blank">玻璃钢坐凳</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/yangtaihulan/" target="_blank">阳台护栏</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/yupeng/" target="_blank">雨棚定制</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/caihui/" target="_blank">墙体彩绘</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/ggzz/" target="_blank">广告制作</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/hdbf/" target="_blank">活动板房</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/dibang/" target="_blank">地磅秤</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/mbzx/" target="_blank">木包装箱</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/hntjbz/" target="_blank">混凝土搅拌站</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/shachuang/" target="_blank">纱窗</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/tadiaozulin/" target="_blank">塔吊租赁</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/zhendongpan/" target="_blank">振动盘</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/pe/" target="_blank">PE包装袋</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/bolixiufu/" target="_blank">汽车玻璃修复</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/putaojia/" target="_blank">葡萄架</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/fwqzy/" target="_blank">服务器租用</a> </li> </ul> </div> </div> </div> <div class="carousel-inner linkbg" style="background: #fff"> <div class="container"> <a href="http://shengjin119.com/" target="_blank">四川胜锦安防</a>    <a href="http://m.cdcxhl.cn/dingzhi/ " target="_blank">定制网站开发</a>    <a href="https://www.cdxwcx.com/tuiguang/" target="_blank">成都网站推广</a>    <a href="http://www.ty2auto.com/" target="_blank">成都添翼二手车</a>    <a href="http://www.pzhzwz.com/" target="_blank">攀枝花网站设计</a>    <a href="http://chengdu.cdcxhl.cn/seo/" target="_blank">成都网站优化</a>    <a href="http://www.stwzsj.com/" target="_blank">成都帛金建站</a>    <a href="http://www.36103.cn/wztg/" target="_blank">网站运维托管</a>    <a href="http://www.ndjierui.cn/" target="_blank">南部网站建设</a>    <a href="http://chengdu.cdcxhl.com/weixin/" target="_blank">成都微信开发</a>    <a href="http://www.cdxwcx.cn/tuoguan/meishan.html" target="_blank">眉山主机托管</a>    <a href="https://www.cdcxhl.com/idc/yaan.html" target="_blank">雅安托管服务器</a>    <a href="http://www.xywzsj.com/" target="_blank">成都钢筋机械设备</a>    <a href="http://www.scpengan.com/" target="_blank">蓬安网站建设</a>    <a href="http://www.36103.cn/" target="_blank">成都网站设计</a>    <a href="http://www.cdkjz.cn/fangan/logistics/" target="_blank">物流公司网站建设方案</a>    <a href="http://www.cdxwcx.cn/seo/" target="_blank">网络营销推广</a>    <a href="https://www.cdcxhl.cn/ " target="_blank">香港云空间</a>    <a href="http://seo.cdkjz.cn/quanwang/" target="_blank">网络推广外包</a>    <a href="http://chengdu.kswjz.com/weixin/" target="_blank">微信营销</a>     </div> </div> <footer> <div class="carousel-inner footjz"> <div class="container"> <i class="icon iconfont zbw"></i> 品质网站制作 <i class="icon iconfont"></i> 自适应网站 <i class="icon iconfont"></i> 开发成本低 <i class="icon iconfont"></i> 响应速度快 <i class="icon iconfont"></i> 多人服务好 <button type="button" class="btn btn-default btn-lg" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 立即开始600网站建设</button> <button type="button" class="btn btn-default btn-xs" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 600网站制作</button> </div> </div> <div class="carousel-inner bqsy"> <div class="container"> <div class="lxfs"> <h4 class="yutelnone">028-86922220 13518219792</h4> <h4 class="yutelblock"><a href="tel:02886922220">028-86922220</a> <a href="tel:13518219792">13518219792</a></h4> <a class="btn btn-default" href="tencent://message/?uin=532337155&Site=&Menu=yes" role="button">网站建设<span>QQ</span>:532337155</a> <a class="btn btn-default" href="tencent://message/?uin=631063699&Site=&Menu=yes" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=532337155&version=1&src_type=web&web_src=oicqzone.com" role="button">网站制作<span>QQ</span>:532337155</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=631063699&version=1&src_type=web&web_src=oicqzone.com" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn-default nonea" href="tencent://message/?uin=1683211881&Site=&Menu=yes" role="button">售后QQ:1683211881</a> <div class="dz">创新互联建站专注: <a href="http://www.mswzjz.cn/" target="_blank">攀枝花网站设计</a> <a href="http://www.mswzjz.cn/" target="_blank">攀枝花网站制作</a> <a href="http://www.mswzjz.cn/" target="_blank">攀枝花网站建设</a> <address>地址:成都太升南路288号锦天国际A幢10楼</address> </div> </div> <div class="bzdh dz"><img src="https://www.cdcxhl.com/imges/bottom_logo.png" alt="创新互联"> <p><a href="https://www.cdcxhl.com/menu.html" target="_blank">成都创新互联科技有限公司</a><br> Tel:028-86922220(7x24h)</p></div> </div> </div> </footer> </body> </html> <script> $.getJSON ("../../qtwebpic.txt", function (data) { var jsonContent = { "featured":data } var random = jsonContent.featured[Math.floor(Math.random() * jsonContent.featured.length)]; $(".adpic .adimg").attr("href",random.link) $(".adpic img").attr("src",random.pic); }) </script>