USING JUMPSTART IN GLASSFISH 3.1.2

WARNING Use GlassFish 3.1.2, not 3.1.2.2, because the latter seems to have introduced a class-loader issue - it throws "java.lang.ClassNotFoundException: javax.persistence.spi.PersistenceProvider".
If you find a solution please please send it here.

These notes apply to GlassFish 3.1.2. They were tested with GlassFish 3.1.2 and JumpStart 6.4.0.

Contents
Prepare GlassFish
Build and deploy JumpStart
Build and deploy and integration test JumpStart
Use JumpStart
How to run integration tests from Eclipse
How to debug the client side
How to debug the server side

Prepare GlassFish
These instructions prepare GlassFish with the following elements:

Web Server Business Server Persistence Database Server Logger
Tomcat GlassFish's EJB3 Hibernate Derby Log4j
(GlassFish's default) (GlassFish's default) (Added by us. We could use GlassFish's embedded TopLink except that JumpStart has a small dependency on Hibernate) (GlassFish's default) (Added by us)

Build and deploy JumpStart

Here we use Ant to clean, compile, unit test, package, deploy to the server, and wait for it to load.
The deployed package is jumpstart.ear.

Build and deploy and integration test JumpStart

Here we use Ant to clean, compile, unit test, package, deploy to the server, wait for it to load, and run the business integration test suite.
The deployed package is jumpstart.ear. The tests remotely call the JumpStart business layer services exposed by the server.

Use JumpStart

Ensure the command line is using Java 1.6: the commands java -version and javac -version must return a variant of 1.6, eg. 1.6.0_13.

If GlassFish is not running, start it (as above).

Before you use JumpStart for the first time in a new server, you need to build it, deploy it, and run an integration test.

Then, while the database (Derby) is running, populate it:

Now you can visit JumpStart with your web browser at http://yourserver:8080/jumpstart.

How to run integration tests from Eclipse

First, build and deploy JumpStart as described above.

Second, create a User Library over GlassFish:

Third, run the business integration test suite from Eclipse:

  • Choose Run > Run Configurations.... The relevant window will appear.
  • Right-click on JUnit and choose New.
  • Set Test Runner to JUnit 4.
  • Set the other variables to values similar to those shown in the screen shot on the right.
  1. Click on the Classpath tab.
  2. Remove the (default classpath) entry.
  3. Click on User Entries.
  4. Add folder business/src/test/conf-remote-glassfish/ .
  5. Add folder collapsed/jumpstart.war/WEB-INF/classes/ .
  6. Add user library glassfish-3.1.2-client-lib .
  7. Add all JARs from these folders:
    business/src/main/lib-compile/
    business/src/main/lib-runtime/ (actually, lib-runtime is empty)
    business/src/test/lib-test/
  8. Move the two folders to the top. It avoids conflicts.

How to debug the client side

To debug, for example, the client side of the integration tests, use Run > Debug Configurations... instead of Run > Run Configurations.... Eclipse will then stop at breakpoints, display variables, enable single-stepping, etc. in the test suite.

How to debug the server side

To debug any part of JumpStart as it runs in the server you'll need to be running GlassFish in debug mode. There are a couple of ways to do it:

 












©2008, 2018 Geoff Callender, Sydney, Australia