Author: Pete Muir
Level: Beginner
Technologies: H2
Summary: Shows how to use the H2 console with JBoss EAP
Target Product: EAP
Product Versions: EAP 6.1, EAP 6.2, EAP 6.3
Source: https://github.com/jboss-developer/jboss-eap-quickstarts/
JBoss EAP bundles H2 as an in-memory, in-process database. H2 is written in Java so it can run on any platform that JBoss EAP runs on.
This quickstart comes bundled with a version of the H2 Console built for JBoss EAP. To make the H2 console run on JBoss EAP, the H2 libraries were removed from the WAR and a dependency on the H2 module was added to the META-INF/MANIFEST.MF
file. The rebuilt console is provided in the root directory of this quickstart.
This is quickstart shows you how to use the H2 console with Red Hat JBoss Enterprise Application Platform. It uses the greeter
quickstart as a GUI for entering data.
Note: This quickstart uses the H2 database included with JBoss EAP 6. It is a lightweight, relational example datasource that is used for examples only. It is not robust or scalable and should NOT be used in a production environment!
The application this project produces is designed to be run on Red Hat JBoss Enterprise Application Platform 6.1 or later.
All you need to build this project is Java 6.0 (Java SDK 1.6) or later, Maven 3.0 or later.
If you have not yet done so, you must Configure Maven before testing the quickstarts.
This quickstart depends on the deployment of the greeter
quickstart. Before running this quickstart, see the greeter README file for details on how to deploy it.
You can verify the deployment of the greeter
quickstart by accessing the following URL: http://localhost:8080/jboss-greeter
Deploy the console by copying the h2console.war
located in the root directory of this quickstart to the EAP_HOME/standalone/deployments
directory.
The path to your EAP_HOME
depends on whether you installed JBoss EAP separately or as part of the JBoss Developer Studio installation.
-
If you installed and run the JBoss EAP Server independently, the default path for
EAP_HOME
is${user.home}/EAP-6.3.0
, so the default deployments directory would be:For Linux: /home/USER_NAME/EAP-6.3.0/standalone/deployments For Windows: "C:\Users\USER_NAME\EAP-6.3.0\standalone\deployments" or "C:\Documents and Settings\USER_NAME\EAP-6.3.0\standalone\deployments"
-
If you installed and run the JBoss EAP Server included with JBoss Developer Studio, the default path for
EAP_HOME
is${user.home}/jbdevstudio/runtimes/jboss-eap
, so the default deployments directory would be::For Linux: /home/USER_NAME/jbdevstudio/runtimes/jboss-eap/standalone/deployments For Windows: "C:\Users\USER_NAME\jbdevstudio\runtimes\jboss-eap" or "C:\Documents and Settings\USER_NAME\jbdevstudio\runtimes\jboss-eap"
You can access the console at the following URL: http://localhost:8080/h2console.
You need to enter the JDBC URL, and credentials. To access the "test" database that the greeter
quickstart uses, enter these details:
- JDBC URL:
jdbc:h2:mem:greeter-quickstart;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1
- User Name:
sa
- Password:
sa
Click on the Test Connection button to make sure you can connect. If you can, go ahead and click Connect.
Take a look at the data added by the greeter
application. Run the following SQL command:
select * from users;
You should see the two users seeded by the greeter
quickstart, plus any users you added when testing that application.
Note: You will see the following warnings in the server log. You can ignore this warning.
JBAS018568: Deployment "deployment.h2console.war" is using an unsupported module ("com.h2database.h2:main") which may be changed or removed in future versions without notice.