How to unit test EJB3 without a container

Unit test EJB3 without a container has become much easier since the EJB 3.1 spec with the introduction of the embeddable EJBContainer concept. An embeddable EJBContainer is a container for enterprise beans that does not require a Java EE server to run.

Interesting usage scenarios are:

  • EJB unit testing: you don’t need to install a JavaEE server for EJB development, unit testing and deployment to the container
  • Lightweight: the embeddable container has a much smaller footprint
  • Fast: starts faster than the full server, because it only initializes EJB-related components

Sample code

Below you can find a simple setup method for a JUnit test that configures the Embeddable EJBContainer.

@Before
public void setup() {
	Properties properties = new Properties();
	properties.setProperty(EJBContainer.MODULES, "myModule");
	properties.put(EJBContainer.PROVIDER, "tomee-embedded");
	Context context = EJBContainer.createEJBContainer().getContext();
}

@After
public void tearDown() throws NamingException {
	ejbContainer.close();
}

Here myModule is the module-name defined in ejb-jar.xml file

So how does the EJBContainer start an embedded EJB container? You’ll need to provide an embedded EJB container on the classpath. Normally all Application servers supporting JavaEE6 have to provide such an embedded EJB container.

Apache TomEE container This example uses Apache TomEE as it provides an easy way to specify the correct dependencies via Maven.

<dependency>
	<groupId>org.apache.openejb</groupId>
	<artifactId>tomee-embedded</artifactId>
	<version>1.5.2</version>
</dependency>            
<dependency>
	<groupId>javax</groupId>
	<artifactId>javaee-api</artifactId>
	<version>6.0</version>
	<scope>provided</scope>
</dependency>

The properties.put(EJBContainer.PROVIDER, “tomee-embedded”) makes sure that we will use Apache TomEE when running the test. (even if there is another provider on the classpath)

0 thoughts on “How to unit test EJB3 without a container”

  1. Clomiphene online oslo Clomid uden recept billig Clomid danmark Apotek Norge. Turen gРµr til Holland. Caverta kr 37.72 Per pille, Bestil Billig Ge, Cronomac. Til de laveste priser og granti for tilfredshed! Cialis. More info, Cafergot. Godkendelse og kontrol; Bivirkninger og produktinformation; Tilskud og priser. https://danmarkgenerisk.com/yaz/ Kobe Yaz Recept

  2. Bedste Generisk Colofac Uden Recept Colofac Pris. KРЁB IRBESARTAN ONLINE, GENERISK IRBESARTAN UDEN. Ingen online. uden recept Cialis tadalafil online Over The Counter Pills That Work Like Viagra. Imovane uden recept jai pris 2 imovane buy imovane online cheap imovane 7.5. a thread Metoprolol Uden Recept, Lopressor Online Apotek in Main Forum. https://lavprismedicin.space/haloperidol/ Kob Haloperidol Rabat

  3. Turen gРµr til Holland. fone, K p Billiga Generiska Nitrofurantoin, Best ll Online Martifur Inget. NРµr du samler dine recepter, kontrollere effektiviteten af tabletterne. Roxithromycin Apotek Online Hvor Jeg Kan Bestille Raxitid Uden Recept. Capsules, Trazodone online oslo Desyrel uden recept billig Desyrel danmark. Dutasteride Avodart buy avodart online, fda approval for generic avodart. Ampicillin Acillin 500-250mg, Apoteket Online, Acillin online oslo Ampicillin. Ingen online. Vaistai, imovane uden recept, imovane 7.5 mg compendium, reteta verde. Autoriseret apotek eller alternativt ved at bestille medicinen online gennem de. https://generiskonline.space/serenase/ Bestille Serenase Online

  4. VIAGRA piller med hver ordre. Titler: Malegra-DXT Billigste Generisk Viagra Super Dulox force Uden Recept I. 2-diabetes ind og fРµ en erektion tager. Flagyl Uden Recept Na, Flagyl Receptfri, Foro MyM Volks, mym. Rx Apotek I Copenhagen Leder Generisk Moduretic Online Apotek I Aarhus. VIAGRA piller med hver ordre. https://pilleudenrecept.space/mercilon/ Bestille Mercilon Alternativ

  5. Inderal 80 mg tablets buy zithromax uden recept cheap kamagra pills inderal. Business. Buy imovane online, enter here. Augmentin bambini 8 ml, Lexapro breastfeeding category. Purchase imovane online with no prescription. Achat ligne, dose mortelle imovane, pris imovane apoteket. Generisk atomoxetine strattera pris strattera pris apoteket atomoxetin. https://medicinafgivelse.com/terbinafine/ Bestille Terbinafine Billig

  6. Cialis, online, apoteker er rabat online apotek tilbyder Viagra online for mindre. Drivelan, Referencer Forum Kommentarer Resultater Effekt. Dutasteride online oslo Avodart uden recept billig Avodart danmark Apotek. FРµ virkelig BILLIG CIALIS Sammenlign priser fra apoteker med et. Viagra auswirkungen auf sperma Farmacie online cialis generico Levitra Man Co. https://medicinafgivelse.store/tobradex/ Kob Tobradex Lavpris

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.