2016-04-30 04:39:32 +00:00
2016-04-27 21:01:22 +00:00
=== Package the JDBC Driver
2016-04-29 16:09:09 +00:00
Find and download the JDBC driver JAR for your RDBMS. Before you can use this driver, you must package it up into a module
and install it into the server.
2016-04-27 21:01:22 +00:00
Modules define JARs that are loaded into the {{book.project.name}} classpath and the dependencies those JARs have on
other modules. They are pretty simple to set up.
2016-06-09 11:24:33 +00:00
Within the _.../modules/_ directory of your
2016-04-27 21:01:22 +00:00
{{book.project.name}} distribution, you need to create a directory structure to hold your module definition. The convention is use the Java package name
of the JDBC driver for the name of the directory structure. For PostgreSQL, create the directory _org/postgresql/main_. Copy your database
2016-04-29 16:09:09 +00:00
driver JAR into this directory and create an empty _module.xml_ file within it too.
2016-04-27 21:01:22 +00:00
.Module Directory
image:../../{{book.images}}/db-module.png[]
After you have done this, open up the _module.xml_ file and create the following XML
.Module XML
[source,xml]
----
<?xml version="1.0" ?>
<module xmlns="urn:jboss:module:1.3" name="org.postgresql">
<resources>
<resource-root path="postgresql-9.4.1208.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
</dependencies>
</module>
----
2016-04-29 20:12:12 +00:00
The module name should match the directory structure of your module. So, _org/postgresql_ maps to `org.postgresql`. The
`resource-root path` attribute should specify the JAR filename of the driver. The rest are just the normal dependencies that
2016-04-27 21:01:22 +00:00
any JDBC driver JAR would have.
=== Declare and Load JDBC Driver
The next thing you have to do is declare your newly packaged JDBC driver into your deployment profile so that it loads and becomes
2016-04-29 16:09:09 +00:00
available when the server boots up. Where you perform this action depends on your <<fake/../../operating-mode.adoc#_operating-mode, operating mode>>. If you're
2016-04-27 21:01:22 +00:00
deploying in standard mode, edit _.../standalone/configuration/standalone.xml_. If you're deploying in standard clustering
mode, edit _.../standalone/configuration/standalone-ha.xml_. If you're deploying in domain mode, edit
2016-04-29 16:09:09 +00:00
_.../domain/configuration/domain.xml_. In domain mode, you'll need to make sure you edit the profile you are using: either
2016-04-29 20:12:12 +00:00
`auth-server-standalone` or `auth-server-clustered`
2016-04-27 21:01:22 +00:00
2016-04-29 20:12:12 +00:00
Within the profile, search for the `drivers` XML block within the `datasources` subsystem. You should see
2016-04-29 16:09:09 +00:00
a pre-defined driver declared for the H2 JDBC driver. This is where you'll declare the JDBC driver for your external
2016-04-27 21:01:22 +00:00
database.
.JDBC Drivers
[source,xml]
----
<subsystem xmlns="urn:jboss:domain:datasources:4.0">
<datasources>
...
<drivers>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
----
2016-04-29 20:12:12 +00:00
Within the `drivers` XML block you'll need to declare an additional JDBC driver. It needs to have a `name` which
you can choose to be anything you want. You specify the `module` attribute which points to the `module` package you
2016-04-29 16:09:09 +00:00
created earlier for the driver JAR. Finally
2016-04-27 21:01:22 +00:00
you have to specify the driver's Java class. Here's an example of installing PostgreSQL driver that lives in the module
example defined earlier in this chapter.
.Declare Your JDBC Drivers
[source,xml]
----
<subsystem xmlns="urn:jboss:domain:datasources:4.0">
<datasources>
...
<drivers>
<driver name="postgresql" module="org.postgresql">
2017-01-10 06:16:29 +00:00
<xa-datasource-class>org.postgresql.xa.PGXADataSource</xa-datasource-class>
2016-04-27 21:01:22 +00:00
</driver>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
----