Enabling second level cache in a JBoss when you use JPA 1 is actually relative easy. Understanding how to set its properties is also not to difficult to do. Finding how to specify which configuration file to use when setting the additional configurations is more difficult.
May 10, 2012
August 7, 2011
Test drive the implementation of a database layer
Development guided by test is perhaps the best way to make sure that your solution works and is possible to verify. I will show how you can develop a database layer guided by tests. It will be divided into two parts. The first part will be an in memory solution and the second part will be implemented using Java Persistence API, JPA, and Hypersonic. The second implementation is supposed to replace the first one guided by the tests developed for the in memory solution.
December 21, 2010
Automatically integration test an ejb with Maven
We want to perform an integration test of a system using Maven. The application must be deployed on an application
server and the application server must be started before we can perform the integration tests. The application
should be undeployed and the application server should be terminated after the integration test has been performed
no matter what the result of the test was.
How can this be achieved with Maven?
July 9, 2010
Maven and JBoss ESB – Hello World
I want to build a Hello World example for JBoss ESB using Maven instead of Ant. The original example bundled with
JBoss ESB is using Ant. I have created a pom.xml that will do all the magic and re-located the example files to fit
into a Maven structure.
April 17, 2009
Integration test a web application with Selenium
We want to build a web application and we want to test it automatically.