有狀態(tài)會話bean是一種企業(yè)bean的它與客戶保持會話狀態(tài)。有狀態(tài)會話Bean根據(jù)其名聲在它的實例變量相關(guān)的客戶端狀態(tài)。 EJB容器創(chuàng)建一個單獨的有狀態(tài)會話bean來處理客戶端的每個請求。只要請求范圍已經(jīng)結(jié)束,statelful會話bean被銷毀。
下面是創(chuàng)建一個有狀態(tài)EJB所需的步驟:
創(chuàng)建遠(yuǎn)程/本地接口暴露業(yè)務(wù)方法。
該接口將由EJB客戶端應(yīng)用程序使用。
如果EJB客戶端在同一個環(huán)境中,EJB會話Bean被部署使用@Local注解。
如果EJB客戶端是在不同的環(huán)境中,EJB會話Bean被部署使用@Remote注釋。
創(chuàng)建有狀態(tài)會話bean實現(xiàn)上述接口。
使用@Stateful注解來表示它有狀態(tài)的bean。 EJB容器自動創(chuàng)建由部署期間閱讀本注釋所需要的相關(guān)配置和接口。
遠(yuǎn)程接口
import javax.ejb.Remote; @Remote public interface LibraryStatefulSessionBeanRemote { //add business method declarations }
EJB狀態(tài)
@Stateful public class LibraryStatefulSessionBean implements LibraryStatefulSessionBeanRemote { //implement business method }
讓我們創(chuàng)建一個測試EJB應(yīng)用程序來測試狀態(tài)EJB。
步驟 | 描述 |
---|---|
1 | 創(chuàng)建一個包com.tutorialspoint.stateful下一個名字EjbComponent項目作為EJB解釋-創(chuàng)建應(yīng)用程序一章。您也可以使用EJB創(chuàng)建的項目-創(chuàng)建應(yīng)用程序章這樣本章了解狀態(tài)EJB概念。 |
2 | 創(chuàng)建LibraryStatefulSessionBean.java和LibraryStatefulSessionBeanRemote作為EJB解釋-創(chuàng)建應(yīng)用程序一章。保持不變的文件其余部分。 |
3 | 清理并生成應(yīng)用程序,確保業(yè)務(wù)邏輯正在按要求。 |
4 | 最后,部署JBoss應(yīng)用服務(wù)器上的jar文件的形式應(yīng)用。如果尚未啟動JBoss應(yīng)用服務(wù)器將自動被啟動。 |
5 | 現(xiàn)在創(chuàng)建EJB客戶端,以同樣的方式一個基于控制臺的應(yīng)用程序在EJB解釋-創(chuàng)建應(yīng)用程序一章的主題創(chuàng)建客戶機訪問EJB。 |
package com.tutorialspoint.stateful; import java.util.List; import javax.ejb.Remote; @Remote public interface LibraryStatefulSessionBeanRemote { void addBook(String bookName); List getBooks(); }
package com.tutorialspoint.stateful; import java.util.ArrayList; import java.util.List; import javax.ejb.Stateful; @Stateful public class LibraryStatefulSessionBean implements LibraryStatefulSessionBeanRemote { List<String> bookShelf; public LibraryStatefulSessionBean(){ bookShelf = new ArrayList<String>(); } public void addBook(String bookName) { bookShelf.add(bookName); } public List<String> getBooks() { return bookShelf; } }
一旦你部署JBoss上EjbComponent項目,注意jboss的日志。
JBoss已經(jīng)具備自動創(chuàng)建我們的會話bean JNDI入口- LibraryStatefulSessionBean /遙控器 。
我們將使用此查找字符串來獲得類型的遠(yuǎn)程業(yè)務(wù)對象- com.tutorialspoint.stateful.LibraryStatefulSessionBeanRemote
... 16:30:01,401 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI: LibraryStatefulSessionBean/remote - EJB3.x Default Remote Business Interface LibraryStatefulSessionBean/remote-com.tutorialspoint.stateful.LibraryStatefulSessionBeanRemote - EJB3.x Remote Business Interface 16:30:02,723 INFO [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibraryStatefulSessionBean,service=EJB3 16:30:02,723 INFO [EJBContainer] STARTED EJB: com.tutorialspoint.stateful.LibraryStatefulSessionBeanRemote ejbName: LibraryStatefulSessionBean 16:30:02,731 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI: LibraryStatefulSessionBean/remote - EJB3.x Default Remote Business Interface LibraryStatefulSessionBean/remote-com.tutorialspoint.stateful.LibraryStatefulSessionBeanRemote - EJB3.x Remote Business Interface ...
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces java.naming.provider.url=localhost
這些屬性用于初始化Java命名服務(wù)的InitialContext對象
InitialContext對象將被用于查找有狀態(tài)會話Bean
package com.tutorialspoint.test; import com.tutorialspoint.stateful.LibraryStatefulSessionBeanRemote; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.util.List; import java.util.Properties; import javax.naming.InitialContext; import javax.naming.NamingException; public class EJBTester { BufferedReader brConsoleReader = null; Properties props; InitialContext ctx; { props = new Properties(); try { props.load(new FileInputStream("jndi.properties")); } catch (IOException ex) { ex.printStackTrace(); } try { ctx = new InitialContext(props); } catch (NamingException ex) { ex.printStackTrace(); } brConsoleReader = new BufferedReader(new InputStreamReader(System.in)); } public static void main(String[] args) { EJBTester ejbTester = new EJBTester(); ejbTester.testStatelessEjb(); } private void showGUI(){ System.out.println("**********************"); System.out.println("Welcome to Book Store"); System.out.println("**********************"); System.out.print("Options 1. Add Book 2. Exit Enter Choice: "); } private void testStatelessEjb(){ try { int choice = 1; LibraryStatefulSessionBeanRemote libraryBean = LibraryStatefulSessionBeanRemote)ctx.lookup("LibraryStatefulSessionBean/remote"); while (choice != 2) { String bookName; showGUI(); String strChoice = brConsoleReader.readLine(); choice = Integer.parseInt(strChoice); if (choice == 1) { System.out.print("Enter book name: "); bookName = brConsoleReader.readLine(); Book book = new Book(); book.setName(bookName); libraryBean.addBook(book); } else if (choice == 2) { break; } } List<Book> booksList = libraryBean.getBooks(); System.out.println("Book(s) entered so far: " + booksList.size()); int i = 0; for (Book book:booksList) { System.out.println((i+1)+". " + book.getName()); i++; } LibraryStatefulSessionBeanRemote libraryBean1 = (LibraryStatefulSessionBeanRemote)ctx.lookup("LibraryStatefulSessionBean/remote"); List<String> booksList1 = libraryBean1.getBooks(); System.out.println( "***Using second lookup to get library stateful object***"); System.out.println( "Book(s) entered so far: " + booksList1.size()); for (int i = 0; i < booksList1.size(); ++i) { System.out.println((i+1)+". " + booksList1.get(i)); } } catch (Exception e) { System.out.println(e.getMessage()); e.printStackTrace(); }finally { try { if(brConsoleReader !=null){ brConsoleReader.close(); } } catch (IOException ex) { System.out.println(ex.getMessage()); } } } }
EJBTester做以下任務(wù)。
從jndi.properties負(fù)荷特性和初始化InitialContext對象。
在testStatefulEjb()方法,JNDI查找與名行 - “LibraryStatefulSessionBean /遠(yuǎn)程”,以獲得遠(yuǎn)程業(yè)務(wù)對象(狀態(tài)EJB)。
然后用戶顯示庫存儲用戶界面和他(她)被要求輸入選擇/。
如果用戶輸入1,系統(tǒng)要求書名并保存使用狀態(tài)會話bean addBook()方法的書。會話bean存儲本書的實例變量。
如果用戶輸入2,系統(tǒng)檢索使用狀態(tài)會話bean getBooks()方法,并退出書籍。
然后另一個JNDI查找與名行 - “LibraryStatefulSessionBean /遠(yuǎn)程”,以獲得遠(yuǎn)程業(yè)務(wù)對象(狀態(tài)EJB)再次和書上市完成。
在項目資源管理器中找到EJBTester.java。右鍵單擊EJBTester類并選擇運行文件 。
驗證Netbeans的控制臺下面的輸出。
run: ********************** Welcome to Book Store ********************** Options 1. Add Book 2. Exit Enter Choice: 1 Enter book name: Learn Java ********************** Welcome to Book Store ********************** Options 1. Add Book 2. Exit Enter Choice: 2 Book(s) entered so far: 1 1. Learn Java ***Using second lookup to get library stateful object*** Book(s) entered so far: 0 BUILD SUCCESSFUL (total time: 13 seconds)
在項目資源管理器中找到EJBTester.java。右鍵單擊EJBTester類并選擇運行文件 。
驗證Netbeans的控制臺下面的輸出。
跑: ********************** 歡迎到書店 ********************** 選項 1.添加圖書 2.退出 輸入選擇:2 書(S)簽訂至今:0 ***使用第二查找獲取庫狀態(tài)的對象*** 書(S)簽訂至今:0 BUILD SUCCESSFUL(總時間:12秒)
上面顯示輸出狀態(tài),對于每個查找返回不同的狀態(tài)EJB實例。
有狀態(tài)EJB對象是保持只單個會話值。正如在第二次運行,我們沒有得到圖書的任何值。
更多建議: