無狀態(tài)會(huì)話bean是一種企業(yè)bean,它通常用來做獨(dú)立操作。無狀態(tài)會(huì)話Bean根據(jù)其名字沒有任何關(guān)聯(lián)的客戶端的狀態(tài),但它可能會(huì)保留其實(shí)例的狀態(tài)。 EJB容器通常會(huì)創(chuàng)建一些無狀態(tài)Bean的對(duì)象池,并使用這些對(duì)象來處理客戶端的請(qǐng)求。在池中,實(shí)例變量的值不能保證是相同的跨越查找/方法調(diào)用。
下面是創(chuàng)建一個(gè)無狀態(tài)EJB所需的步驟。
創(chuàng)建遠(yuǎn)程/本地接口暴露商業(yè)方法。
該接口將由EJB客戶端應(yīng)用程序使用。
如果EJB客戶端在同一個(gè)環(huán)境中,EJB會(huì)話Bean被部署使用本地注釋。
如果EJB客戶端是在不同的環(huán)境中,EJB會(huì)話Bean被部署使用遠(yuǎn)程注釋。
創(chuàng)建一個(gè)無狀態(tài)會(huì)話bean實(shí)現(xiàn)上述接口。
使用@Stateless注釋,以表示它無狀態(tài)Bean。 EJB容器自動(dòng)創(chuàng)建由部署期間閱讀本注釋所需要的相關(guān)配置和接口。
遠(yuǎn)程接口
import javax.ejb.Remote; @Remote public interface LibrarySessionBeanRemote { //add business method declarations }
無狀態(tài)EJB
@Stateless public class LibrarySessionBean implements LibrarySessionBeanRemote { //implement business method }
讓我們創(chuàng)建一個(gè)測(cè)試EJB應(yīng)用程序來測(cè)試無狀態(tài)EJB。
步驟 | 描述 |
---|---|
1 | 用包com.tutorialspoint.stateless下一個(gè)名字EjbComponent在EJB作為解釋的創(chuàng)建項(xiàng)目-創(chuàng)建應(yīng)用程序一章。您也可以使用EJB創(chuàng)建的項(xiàng)目-創(chuàng)建應(yīng)用程序章這樣本章了解無狀態(tài)的EJB概念。 |
2 | 創(chuàng)建LibrarySessionBean.java和LibrarySessionBeanRemote作為EJB解釋-創(chuàng)建應(yīng)用程序一章。保持不變的文件其余部分。 |
3 | 清理并生成應(yīng)用程序,確保業(yè)務(wù)邏輯正在按要求。 |
4 | 最后,部署JBoss應(yīng)用服務(wù)器上的jar文件的形式應(yīng)用。如果尚未啟動(dòng)JBoss應(yīng)用服務(wù)器將自動(dòng)被啟動(dòng)。 |
5 | 現(xiàn)在創(chuàng)建EJB客戶端,以同樣的方式一個(gè)基于控制臺(tái)的應(yīng)用程序在EJB解釋-創(chuàng)建應(yīng)用程序一章的主題創(chuàng)建客戶機(jī)訪問EJB。 |
package com.tutorialspoint.stateless; import java.util.List; import javax.ejb.Remote; @Remote public interface LibrarySessionBeanRemote { void addBook(String bookName); List getBooks(); }
package com.tutorialspoint.stateless; import java.util.ArrayList; import java.util.List; import javax.ejb.Stateless; @Stateless public class LibrarySessionBean implements LibrarySessionBeanRemote { List<String> bookShelf; public LibrarySessionBean(){ bookShelf = new ArrayList<String>(); } public void addBook(String bookName) { bookShelf.add(bookName); } public List<String> getBooks() { return bookShelf; } }
一旦你部署JBoss上EjbComponent項(xiàng)目,就會(huì)通知jboss的日志。
JBoss已經(jīng)具備自動(dòng)創(chuàng)建我們的會(huì)話bean JNDI入口- LibrarySessionBean /遠(yuǎn)程。
我們將使用此查找字符串來獲得類型的遠(yuǎn)程業(yè)務(wù)對(duì)象- com.tutorialspoint.stateless.LibrarySessionBeanRemote
... 16:30:01,401 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI: LibrarySessionBean/remote - EJB3.x Default Remote Business Interface LibrarySessionBean/remote-com.tutorialspoint.stateless.LibrarySessionBeanRemote - EJB3.x Remote Business Interface 16:30:02,723 INFO [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibrarySessionBean,service=EJB3 16:30:02,723 INFO [EJBContainer] STARTED EJB: com.tutorialspoint.stateless.LibrarySessionBeanRemote ejbName: LibrarySessionBean 16:30:02,731 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI: LibrarySessionBean/remote - EJB3.x Default Remote Business Interface LibrarySessionBean/remote-com.tutorialspoint.stateless.LibrarySessionBeanRemote - 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對(duì)象
InitialContext對(duì)象將被用于查找無狀態(tài)會(huì)話bean
package com.tutorialspoint.test; import com.tutorialspoint.stateful.LibrarySessionBeanRemote; 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; LibrarySessionBeanRemote libraryBean = LibrarySessionBeanRemote)ctx.lookup("LibrarySessionBean/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++; } LibrarySessionBeanRemote libraryBean1 = (LibrarySessionBeanRemote)ctx.lookup("LibrarySessionBean/remote"); List<String> booksList1 = libraryBean1.getBooks(); System.out.println( "***Using second lookup to get library stateless 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對(duì)象。
在testStatelessEjb()方法,JNDI查找與名行 - “LibrarySessionBean /遠(yuǎn)程”,以獲得遠(yuǎn)程業(yè)務(wù)對(duì)象(無狀態(tài)EJB)。
然后用戶顯示庫(kù)存儲(chǔ)用戶界面和他(她)被要求輸入選擇/。
如果用戶輸入1,系統(tǒng)要求書名并保存使用無狀態(tài)會(huì)話bean addBook()方法的書。會(huì)話bean存儲(chǔ)本書的實(shí)例變量。
如果用戶輸入2,系統(tǒng)檢索使用無狀態(tài)會(huì)話bean getBooks()方法,并退出書籍。
然后另一個(gè)JNDI查找與名行 - “LibrarySessionBean /遠(yuǎn)程”,以獲得遠(yuǎn)程業(yè)務(wù)對(duì)象(無狀態(tài)EJB)再次和書上市完成。
在項(xiàng)目資源管理器中找到EJBTester.java。右鍵單擊EJBTester類并選擇運(yùn)行文件 。
驗(yàn)證下面Netbeans控制臺(tái)的輸出。
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 stateless object*** Book(s) entered so far: 0 BUILD SUCCESSFUL (total time: 13 seconds)
在項(xiàng)目資源管理器中找到EJBTester.java。右鍵單擊EJBTester類并選擇運(yùn)行文件 。
驗(yàn)證下面Netbeans的控制臺(tái)的輸出。
run: ********************** Welcome to Book Store ********************** Options 1. Add Book 2. Exit Enter Choice: 2 Book(s) entered so far: 0 ***Using second lookup to get library stateless object*** Book(s) entered so far: 1 1. Learn Java BUILD SUCCESSFUL (total time: 12 seconds)
上面顯示的輸出可能會(huì)有所不同取決于JBoss的多少無狀態(tài)的EJB對(duì)象保持。
如果一個(gè)無狀態(tài)的EJB對(duì)象保持不變,則可能每個(gè)查找后,看到書相同的列表。
EJB容器可以為每一個(gè)查詢返回相同的無狀態(tài)EJB對(duì)象。
無狀態(tài)EJB豆是保持實(shí)例變量的值,直到?jīng)]有重新啟動(dòng)服務(wù)器。
更多建議: