Java EE 遠程客戶的訪問EJB實現實例(Jboss wildfly)

来源:http://www.cnblogs.com/NZuoF/archive/2016/05/29/5539370.html
-Advertisement-
Play Games

實例與上一篇GlassFish一致,應用伺服器換成wildfiy主要介紹差異部分。 1.準備工作,下載wildfly 10.0.0.final 2.創建管理員和用戶, 解壓縮wildfly-10.0.0.Final,在解壓後的文件夾中wildfly-10.0.0.Final\bin 下運行add-u ...


實例與上一篇GlassFish一致,應用伺服器換成wildfiy主要介紹差異部分。

1.準備工作,下載wildfly 10.0.0.final 

2.創建管理員和用戶, 解壓縮wildfly-10.0.0.Final,在解壓後的文件夾中wildfly-10.0.0.Final\bin 下運行add-user,參考文檔進行操作

3.NetBeans伺服器中添加伺服器->WildFly 應用伺服器->選擇解壓文件夾->使用預設埠和ip

4.修改CCEnterpriseApplication項目屬性->運行->伺服器選擇WildFly 應用伺服器,修改CCEnterpriseApplication-ejb,CCEnterpriseApplication-war 伺服器改成WildFly 應用伺服器

5.修改CCClient庫,去除gf-client.jar ,添加 jboss-client.jar (wildfly-10.0.0.Final\bin\client 文件夾下)

6.修改客戶端連接代碼,需要用第4種連接方式,前面三種都不行,Context的參數也發生變化,根據wildfly文檔進行修改,用戶名密碼是步驟2時建立的,Application User 就可以了。

  

 
try {           
           Date d = new Date();  
          Hashtable env = new Hashtable();  
          //GlassFish  
       //  env.put("org.omg.CORBA.ORBInitialHost", "localhost");  
       //  env.put("org.omg.CORBA.ORBInitialPort", "3700");    
         //Jboss   
         env.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");  
         env.put(Context.INITIAL_CONTEXT_FACTORY,"org.jboss.naming.remote.client.InitialContextFactory");  
         env.put(Context.PROVIDER_URL, "http-remoting://localhost:8080");  
         env.put(Context.SECURITY_PRINCIPAL,"user");//用戶名  
         env.put(Context.SECURITY_CREDENTIALS, "user");//密碼  
         env.put("jboss.naming.client.ejb.context", true);  
         Context  context = new InitialContext(env);             
         Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));  
          /** 
           * 1."cc.test.ejb.CCSessionBeanRemote" 
           * 2.CCSessionBeanRemote.class.getName() 
           * 3.java:global/CCEnterpriseApplication/CCSessionBean 
           * 4.CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!cc.test.ejb.CCSessionBeanRemote" 
           *  
           */  
          CCSessionBeanRemote ccSession = (CCSessionBeanRemote)context.lookup("CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!"+CCSessionBeanRemote.class.getName());  
          Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));  
          this.messageLabel.setText(ccSession.checkConn());  
          Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));  
          CCSessionBeanRemote ccSession2 = (CCSessionBeanRemote)context.lookup("CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!"+CCSessionBeanRemote.class.getName());  
          Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));  
      } catch (NamingException ex) {  
          Logger.getLogger(LoginJFrame.class.getName()).log(Level.SEVERE, null, ex);  
      }  

 

7.在NetBeans 中啟動WildFly伺服器,部署CCEnterpriseApplication 項目,運行CCClient,點擊連接按鈕,查看輸出結果,與GlassFish對比可以發現獲取Context和EJB都很快不到1s就可以完成,Context.lookup時Jboss的提示信息顯示Remoteing connection信息已經變了。這個以後看看會不會有其他影響。

 

run:  
五月 29, 2016 4:15:41 上午 org.xnio.Xnio <clinit>  
INFO: XNIO version 3.3.4.Final  
五月 29, 2016 4:15:41 上午 org.xnio.nio.NioXnio <clinit>  
INFO: XNIO NIO Implementation Version 3.3.4.Final  
五月 29, 2016 4:15:41 上午 org.jboss.remoting3.EndpointImpl <clinit>  
INFO: JBoss Remoting version 4.0.18.Final  
五月 29, 2016 4:15:41 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 265  
五月 29, 2016 4:15:42 上午 org.jboss.ejb.client.remoting.VersionReceiver handleMessage  
INFO: EJBCLIENT000017: Received server version 2 and marshalling strategies [river]  
五月 29, 2016 4:15:42 上午 org.jboss.ejb.client.remoting.RemotingConnectionEJBReceiver associate  
INFO: EJBCLIENT000013: Successful version handshake completed for receiver context EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext@7483d09c, receiver=Remoting connection EJB receiver [connection=Remoting connection <a659c6a>,channel=jboss.ejb,nodename=dev-pc]} on channel Channel ID bdc84b3b (outbound) of Remoting connection 54d9e20f to localhost/127.0.0.1:8080  
五月 29, 2016 4:15:42 上午 org.jboss.ejb.client.EJBClient <clinit>  
INFO: JBoss EJB Client version 2.1.4.Final  
五月 29, 2016 4:15:42 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 624  
五月 29, 2016 4:15:42 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 640  
五月 29, 2016 4:15:42 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
信息: 640  
五月 29, 2016 4:16:20 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 0  
五月 29, 2016 4:16:20 上午 org.jboss.ejb.client.remoting.VersionReceiver handleMessage  
INFO: EJBCLIENT000017: Received server version 2 and marshalling strategies [river]  
五月 29, 2016 4:16:20 上午 org.jboss.ejb.client.remoting.RemotingConnectionEJBReceiver associate  
INFO: EJBCLIENT000013: Successful version handshake completed for receiver context EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext@302d6389, receiver=Remoting connection EJB receiver [connection=Remoting connection <2f223c50>,channel=jboss.ejb,nodename=dev-pc]} on channel Channel ID af345337 (outbound) of Remoting connection 674abfe5 to localhost/127.0.0.1:8080  
五月 29, 2016 4:16:20 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 62  
五月 29, 2016 4:16:20 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
警告: 62  
五月 29, 2016 4:16:20 上午 cc.test.client.LoginJFrame jButton1MouseClicked  
信息: 62  

 

 

 

總結一下,從WildFly和GlassFish EJB的遠端方法調用可以發現,跟官方文件差別還是有的,從EJB lookup 的路徑可以發現,GlassFish 是一個remote對應一個EJB,WildFly是一個項目下麵一個remote可以對應多個EJB。一個remote有多個實現是很正常,但是遠端方法調用我也不需要知道到底是哪個來實現的,對寫代碼都沒影響。還有一處client端的jar包問題,WildFly比較簡單,一個單獨的jar文件就可以了,GlassFish 側重在Server Container 的概念,在與伺服器同一臺機子會比較簡單,一但到實際分發的時候就比較麻煩,因為引入的jar包裡面都是關聯到其他jar包的。實際jar是空的,可以查看官方文檔關於發佈的介紹,使用方式是package-appclient ,以後再詳細說明。


WildFly 文檔EJB remote client 具體頁面

csdn地址:http://blog.csdn.net/qq_31417619/article/details/51530162

 

完整客戶端代碼

package cc.test.client;

import cc.test.ejb.CCSessionBeanRemote;
import java.sql.Time;
import java.util.Date;
import java.util.Hashtable;
import java.util.Locale;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.naming.Context;

/**
 *
 * @author dev
 */
public class LoginJFrame extends javax.swing.JFrame {

    /**
     * Creates new form JFrame
     */
    public LoginJFrame() {
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        jLabel1 = new javax.swing.JLabel();
        messageLabel = new javax.swing.JLabel();
        jButton1 = new javax.swing.JButton();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        jLabel1.setText("EJB連接測試");

        jButton1.setText("連接EJB glassfish");
        jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
            public void mouseClicked(java.awt.event.MouseEvent evt) {
                jButton1MouseClicked(evt);
            }
        });

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(129, 129, 129)
                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                            .addComponent(messageLabel)
                            .addComponent(jLabel1)))
                    .addGroup(layout.createSequentialGroup()
                        .addGap(92, 92, 92)
                        .addComponent(jButton1)))
                .addContainerGap(173, Short.MAX_VALUE))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addComponent(jLabel1)
                .addGap(134, 134, 134)
                .addComponent(messageLabel)
                .addGap(40, 40, 40)
                .addComponent(jButton1)
                .addContainerGap(78, Short.MAX_VALUE))
        );

        pack();
    }// </editor-fold>                        

    private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {                                      
        try {         
             Date d = new Date();
            Hashtable env = new Hashtable();
            //GlassFish
           //env.put("org.omg.CORBA.ORBInitialHost", "localhost");
          // env.put("org.omg.CORBA.ORBInitialPort", "3700");  
           //Jboss 
           env.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming");
           env.put(Context.INITIAL_CONTEXT_FACTORY,"org.jboss.naming.remote.client.InitialContextFactory");
           env.put(Context.PROVIDER_URL, "http-remoting://localhost:8080");
           env.put(Context.SECURITY_PRINCIPAL,"user");//用戶名
           env.put(Context.SECURITY_CREDENTIALS, "user");//密碼
           env.put("jboss.naming.client.ejb.context", true);
           
           Context  context = new InitialContext(env);           
           Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));
            /**
             * 1."cc.test.ejb.CCSessionBeanRemote"
             * 2.CCSessionBeanRemote.class.getName()
             * 3.java:global/CCEnterpriseApplication/CCSessionBean
             * 4.CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!cc.test.ejb.CCSessionBeanRemote"
             * 
             */
            CCSessionBeanRemote ccSession = (CCSessionBeanRemote)context.lookup("CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!"+CCSessionBeanRemote.class.getName());         
           Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));
            this.messageLabel.setText(ccSession.checkConn());
            Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));
            //CCSessionBeanRemote ccSession2 = (CCSessionBeanRemote)context.lookup("CCEnterpriseApplication/CCEnterpriseApplication-ejb/CCSessionBean!"+CCSessionBeanRemote.class.getName());
            Logger.getLogger(LoginJFrame.class.getName()).log(Level.WARNING,String.valueOf(new Date().getTime()-d.getTime()));
        } catch (NamingException ex) {
            Logger.getLogger(LoginJFrame.class.getName()).log(Level.SEVERE, null, ex);
        }
    }                                     

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(LoginJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(LoginJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(LoginJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(LoginJFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new LoginJFrame().setVisible(true);
            }
        });
    }

    // Variables declaration - do not modify                     
    private javax.swing.JButton jButton1;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel messageLabel;
    // End of variables declaration                   
}
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 按照java面向對象的原則,每個基本類型都有對應的包裝類 byte Byte short Short int Integer long Long boolean Boolean float Float double Double char Character 最常用的作用是,基本類型與String字 ...
  • 最近又遇到了幾年前遇到的問題,標記一下。 對於跨位元組位域(bit field)而言,如果數據傳輸前後環境的位元組序不同(LE->BE,BE->LE),簡單地調用(ntohs/ntohl/htons/htonl)並不能正確讀取位域的值。 例如: 其中,tag,field2,pad是位元組內位域,field ...
  • 三、元組(tuple) 特點:Python的元組與列表類似,不同之處在於元組的元素不能修改,元組使用小括弧 四、列表(List) 五、字典(dict) ...
  • 二、運算符 三、基本數據類型 ...
  • 實現文件 ...
  • 設計模式(Design Patterns) ——可復用面向對象軟體的基礎 設計模式(Design pattern)是一套被反覆使用、多數人知曉的、經過分類編目的、代碼設計經驗的總結。使用設計模式是為了可重用代碼、讓代碼更容易被他人理解、保證代碼可靠性。 毫無疑問,設計模式於己於他人於系統都是多贏的, ...
  • 下麵的是學C++時要註意的。 1.把C++當成一門新的語言學習(和C沒啥關係!真的。); 2.看《Thinking In C++》,不要看《C++變成死相》; 3.看《The C++ Programming Language》和《Inside The C++ Object Model》,不要因為他們 ...
  • 字典其實和之前的元祖和列表功能相似,都是用來儲存一系列對象的。也就是一種可變容器,或者是我所比喻的革新派的菜單。 但也不是完全相同,我在之前曾經將字典稱為特殊的'序列',是字典擁有序列的部分特性,但是又不符合序列的定義。 首先我們來看下字典是如何創建的: 我們可以使用{} 或者dict() 來創建一 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...