Installing Oracle JDBC-Driver On Wildfly / JBoss
Jan 26, 2021
- Download the driver:
ojdbc[VERSION].jar
- Create subfolders
[WILDFLY_HOME]/modules/system/layers/base/com/oracle/main/
- Copy the downloaded
ojdbc[VERSION].jar
into the freshly created folder - Create a file
module.xml
, in the same folder as above, with the contents:
<module xmlns="urn:jboss:module:1.1" name="com.oracle">
<resources>
<resource-root path="ojdbc[VERSION].jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
</dependencies>
</module>
5. In the configuration file standalone.xml
add the entry: within the <drivers>
tag.
<driver name="oracle" module="com.oracle">
<driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
</driver>
6. Add a datasource definition within the <datasources>
tag (next to ExampleD
)
<datasource jndi-name="java:/[NAME]" pool-name="OracleDS" enabled="true">
<connection-url>jdbc:oracle:thin:@[HOST_NAME]:1521:[SID]</connection-url>
<driver>oracle[has to match the driver name]</driver>
<pool>
<min-pool-size>1</min-pool-size>
<max-pool-size>5</max-pool-size>
<prefill>true</prefill>
</pool>
<security>
<user-name>[USERNAME]</user-name>
<password>[PASSWORD]</password>
</security>
</datasource>
To learn more about Perigeon’s portfolio, visit: https://www.perigeon.com/portfolio/
Drop us a mail at possibilities@perigeon.com to discuss your requirement.
Originally published at https://www.perigeon.com