EJB - ตัวสกัดกั้น
EJB 3.0 ให้ข้อกำหนดในการสกัดกั้นการเรียกวิธีการทางธุรกิจโดยใช้วิธีการที่มีคำอธิบายประกอบ @AroundInvoke วิธีการสกัดกั้นถูกเรียกโดย ejbContainer ก่อนที่วิธีการทางธุรกิจจะเรียกมันว่าการสกัดกั้น ต่อไปนี้เป็นตัวอย่างลายเซ็นของเมธอด interceptor
@AroundInvoke
public Object methodInterceptor(InvocationContext ctx) throws Exception {
System.out.println("*** Intercepting call to LibraryBean method: "
+ ctx.getMethod().getName());
return ctx.proceed();
}
วิธีการสกัดกั้นสามารถใช้หรือผูกมัดได้ในสามระดับ
Default - ตัวสกัดเริ่มต้นถูกเรียกใช้สำหรับทุก bean ภายในการปรับใช้ตัวสกัดกั้นเริ่มต้นสามารถใช้ได้ผ่าน xml (ejb-jar.xml) เท่านั้น
Class- ตัวสกัดกั้นระดับคลาสถูกเรียกใช้สำหรับทุกวิธีของถั่ว ตัวสกัดกั้นระดับคลาสสามารถใช้ได้ทั้งโดยการใส่คำอธิบายประกอบผ่าน xml (ejb-jar.xml)
Method- ตัวสกัดกั้นระดับวิธีถูกเรียกใช้สำหรับวิธีการเฉพาะของถั่ว ตัวสกัดกั้นระดับวิธีสามารถใช้ได้ทั้งโดยการใส่คำอธิบายประกอบผ่าน xml (ejb-jar.xml)
เรากำลังพูดถึงผู้สกัดกั้นระดับคลาสที่นี่
คลาส Interceptor
package com.tutorialspoint.interceptor;
import javax.interceptor.AroundInvoke;
import javax.interceptor.InvocationContext;
public class BusinessInterceptor {
@AroundInvoke
public Object methodInterceptor(InvocationContext ctx) throws Exception {
System.out.println("*** Intercepting call to LibraryBean method: "
+ ctx.getMethod().getName());
return ctx.proceed();
}
}
อินเทอร์เฟซระยะไกล
import javax.ejb.Remote;
@Remote
public interface LibraryBeanRemote {
//add business method declarations
}
สกัดกั้น EJB ไร้สัญชาติ
@Interceptors ({BusinessInterceptor.class})
@Stateless
public class LibraryBean implements LibraryBeanRemote {
//implement business method
}
ตัวอย่างการใช้งาน
ให้เราสร้างแอปพลิเคชันทดสอบ EJB เพื่อทดสอบ EJB ไร้สัญชาติที่ถูกดักฟัง
ขั้นตอน | คำอธิบาย |
---|---|
1 | สร้างโครงการที่มีชื่อEjbComponentภายใต้แพคเกจcom.tutorialspoint.interceptorตามที่อธิบายไว้ในEJB - สร้างแอพลิเคชันบท คุณยังสามารถใช้โครงการที่สร้างในEJB - สร้างบทแอปพลิเคชันสำหรับบทนี้เพื่อทำความเข้าใจแนวคิด EJB ที่ถูกดักฟัง |
2 | สร้างLibraryBean.javaและLibraryBeanRemoteภายใต้แพคเกจcom.tutorialspoint.interceptorตามที่อธิบายไว้ในEJB - สร้างแอพลิเคชันบท เก็บไฟล์ที่เหลือไว้ไม่เปลี่ยนแปลง |
3 | ทำความสะอาดและสร้างแอปพลิเคชันเพื่อให้แน่ใจว่าตรรกะทางธุรกิจทำงานได้ตามข้อกำหนด |
4 | สุดท้ายปรับใช้แอปพลิเคชันในรูปแบบของไฟล์ jar บน JBoss Application Server เซิร์ฟเวอร์แอปพลิเคชัน JBoss จะเริ่มทำงานโดยอัตโนมัติหากยังไม่เริ่มทำงาน |
5 | ตอนนี้สร้างไคลเอนต์ ejb ซึ่งเป็นแอปพลิเคชันที่ใช้คอนโซลในลักษณะเดียวกับที่อธิบายไว้ในบทEJB - Create Applicationภายใต้หัวข้อCreate Client to access EJB. |
ส่วนประกอบ EJBC (โมดูล EJB)
LibraryBeanRemote.java
package com.tutorialspoint.interceptor;
import java.util.List;
import javax.ejb.Remote;
@Remote
public interface LibraryBeanRemote {
void addBook(String bookName);
List getBooks();
}
LibraryBean.java
package com.tutorialspoint.interceptor;
import java.util.ArrayList;
import java.util.List;
import javax.ejb.Stateless;
import javax.interceptor.Interceptors;
@Interceptors ({BusinessInterceptor.class})
@Stateless
public class LibraryBean implements LibraryBeanRemote {
List<String> bookShelf;
public LibraryBean() {
bookShelf = new ArrayList<String>();
}
public void addBook(String bookName) {
bookShelf.add(bookName);
}
public List<String> getBooks() {
return bookShelf;
}
}
ทันทีที่คุณปรับใช้โครงการ EjbComponent บน JBOSS ให้สังเกตบันทึก jboss
JBoss ได้สร้างรายการ JNDI สำหรับถั่วเซสชันของเราโดยอัตโนมัติ - LibraryBean/remote.
เราจะใช้สตริงการค้นหานี้เพื่อรับวัตถุทางธุรกิจระยะไกลประเภท - com.tutorialspoint.interceptor.LibraryBeanRemote
เอาต์พุตบันทึกของเซิร์ฟเวอร์แอปพลิเคชัน JBoss
...
16:30:01,401 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
LibraryBean/remote - EJB3.x Default Remote Business Interface
LibraryBean/remote-com.tutorialspoint.interceptor.LibraryBeanRemote - EJB3.x Remote Business Interface
16:30:02,723 INFO [SessionSpecContainer] Starting jboss.j2ee:jar=EjbComponent.jar,name=LibraryBean,service=EJB3
16:30:02,723 INFO [EJBContainer] STARTED EJB: com.tutorialspoint.interceptor.LibraryBeanRemote ejbName: LibraryBean
16:30:02,731 INFO [JndiSessionRegistrarBase] Binding the following Entries in Global JNDI:
LibraryBean/remote - EJB3.x Default Remote Business Interface
LibraryBean/remote-com.tutorialspoint.interceptor.LibraryBeanRemote - EJB3.x Remote Business Interface
...
EJBTester (ไคลเอนต์ EJB)
jndi.properties
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost
คุณสมบัติเหล่านี้ใช้เพื่อเริ่มต้นอ็อบเจ็กต์ InitialContext ของเซอร์วิสการตั้งชื่อ java
วัตถุ InitialContext จะถูกใช้เพื่อค้นหาเซสชัน bean ที่ไม่มีสถานะ
EJBTester.java
package com.tutorialspoint.test;
import com.tutorialspoint.stateful.LibraryBeanRemote;
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.testInterceptedEjb();
}
private void showGUI() {
System.out.println("**********************");
System.out.println("Welcome to Book Store");
System.out.println("**********************");
System.out.print("Options \n1. Add Book\n2. Exit \nEnter Choice: ");
}
private void testInterceptedEjb() {
try {
int choice = 1;
LibraryBeanRemote libraryBean =
LibraryBeanRemote)ctx.lookup("LibraryBean/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++;
}
} 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 ดำเนินการดังต่อไปนี้ -
โหลดคุณสมบัติจาก jndi.properties และเริ่มต้นอ็อบเจ็กต์ InitialContext
ในเมธอด testInterceptedEjb () การค้นหา jndi จะดำเนินการด้วยชื่อ - "LibraryBean / remote" เพื่อรับอ็อบเจ็กต์ธุรกิจระยะไกล (EJB ไร้สถานะ)
จากนั้นผู้ใช้จะแสดงส่วนติดต่อผู้ใช้ที่เก็บไลบรารีและระบบจะขอให้ป้อนตัวเลือก
หากผู้ใช้ป้อน 1 ระบบจะถามชื่อหนังสือและบันทึกหนังสือโดยใช้เมธอด stateless session bean addBook () Session Bean กำลังจัดเก็บหนังสือในตัวแปรอินสแตนซ์
หากผู้ใช้ป้อน 2 ระบบจะดึงหนังสือโดยใช้เมธอด stateless session bean getBooks () และออก
เรียกใช้ไคลเอ็นต์เพื่อเข้าถึง EJB
ค้นหา EJBTester.java ใน project explorer คลิกขวาที่คลาส EJBTester และเลือกrun file.
ตรวจสอบเอาต์พุตต่อไปนี้ในคอนโซล 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
BUILD SUCCESSFUL (total time: 13 seconds)
เอาต์พุตบันทึกของเซิร์ฟเวอร์แอปพลิเคชัน JBoss
ตรวจสอบเอาต์พุตต่อไปนี้ในเอาต์พุตบันทึกของเซิร์ฟเวอร์ JBoss Application
....
09:55:40,741 INFO [STDOUT] *** Intercepting call to LibraryBean method: addBook
09:55:43,661 INFO [STDOUT] *** Intercepting call to LibraryBean method: getBooks