EJB 3.1 Specification引入了EJB 3.1 Embeddable API,用于在Java SE環境中執行EJB組件。
與傳統的基于Java EE服務器的執行不同,可嵌入式用法允許客戶端代碼及其相應的企業bean在同一JVM和類加載器中運行。 這為測試,脫機處理(例如批處理)以及在桌面應用程序中使用EJB編程模型提供了更好的支持。
[…]可嵌入的EJB容器為托管環境提供了對Java EE運行時中存在的相同基本服務的支持:注入,對組件環境的訪問,容器管理的事務等。通常,企業bean組件不了解他們在其中運行的一種托管環境。 這使得企業組件在各種測試和部署方案中都具有最大的可重用性,而無需進行大量的返工。
讓我們看一個例子。
首先創建一個Maven項目,然后添加可嵌入的GlassFish依賴項。
我選擇使用TestNG測試框架,但JUnit應該也能正常工作。
<dependencies><dependency><groupId>org.glassfish.extras</groupId><artifactId>glassfish-embedded-all</artifactId><version>3.1.2</version><scope>test</scope></dependency><dependency><groupId>org.testng</groupId><artifactId>testng</artifactId><version>6.4</version><scope>test</scope></dependency><!--The javaee-api is stripped of any code and is just used tocompile your application. The scope provided in Maven meansthat it is used for compiling, but is also available whentesting. For this reason, the javaee-api needs to be belowthe embedded Glassfish dependency. The javaee-api can actuallybe omitted when the embedded Glassfish dependency is included,but to keep your project Java-EE 6 rather than GlassFish,specification is important.--><dependency><groupId>javax</groupId><artifactId>javaee-api</artifactId><version>6.0</version><scope>provided</scope></dependency>
</dependencies>
這是一個簡單的Stateless
會話Bean:
@Stateless
public class HelloWorld {public String hello(String message) {return "Hello " + message;}
}
它通過無接口視圖公開業務方法。
它沒有可用于嵌入執行的特殊API。
以下是一些測試代碼,用于在可嵌入容器中執行Bean:
public class HelloWorldTest {private static EJBContainer ejbContainer;private static Context ctx;@BeforeClasspublic static void setUpClass() throws Exception {// Instantiate an embeddable EJB container and search the// JVM class path for eligible EJB modules or directoriesejbContainer = EJBContainer.createEJBContainer();// Get a naming context for session bean lookupsctx = ejbContainer.getContext();}@AfterClasspublic static void tearDownClass() throws Exception {// Shutdown the embeddable containerejbContainer.close();}@Testpublic void hello() throws NamingException {// Retrieve a reference to the session bean using a portable// global JNDI nameHelloWorld helloWorld = (HelloWorld)ctx.lookup("java:global/classes/HelloWorld");// Do your testsassertNotNull(helloWorld);String expected = "World";String hello = helloWorld.hello(expected);assertNotNull(hello);assertTrue(hello.endsWith(expected));}
}
源代碼在GitHub上的ejb31-embeddable
文件夾下可用。
有關JPA示例的分步教程,請閱讀使用嵌入式EJB容器從NetBeans文檔測試企業應用程序 。
盡管此新API向前邁了一大步,但我仍然對這種方法有疑問:您正在將容器進行測試。 這需要一個與您的生產環境不同的專用容器。
在Java EE 6測試第二部分中 ,我將介紹Arquillian和ShrinkWrap 。
Arquillian是一個功能強大的面向容器的測試框架,位于TestNG和JUnit之上,使您能夠在您選擇的容器上創建生產環境,并僅在該環境中執行測試(使用數據源,JMS目標以及許多其他工具)。您希望在生產環境中看到的其他配置)。 Arquillian并沒有將您的運行時帶到測試中,而是將您的測試帶到了運行時中。
相關文章
- Java EE 6測試第二部分– Arquillian和ShrinkWrap簡介
- Maven 2 Cobertura插件–更新
- 單元測試JBoss 5服務
- 條帶框架和EJB3
- Maven 2 Cobertura插件
- 上一篇文章:使用jQuery更改URL參數
- 下一篇文章:Java EE 6測試第二部分– Arquillian和ShrinkWrap簡介
參考: Java EE 6測試第I部分–來自我們JCG合作伙伴 Samuel Santos的EJB 3.1可嵌入API ,位于Samaxes博客上。
翻譯自: https://www.javacodegeeks.com/2012/06/java-ee-6-testing-part-i-ejb-31.html