Wildfly could not load the module for the Oracle driver

I am trying to add an Oracle DB data source in Wildfly 10. Here is what I have:

<wildfly-home>\modules\com\oracle\ojdbc6\main\
                                              module.xml
                                              ojdbc6.jar

module.xml

<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:Wildfly:module:1.0" name="com.oracle.ojdbc6">
    <resources>
        <resource-root path="ojdbc6.jar"/>
    </resources>
    <dependencies>
        <module name="javax.api"/>
        <module name="javax.resource.api"/>
        <module name="javax.transaction.api"/> <!-- See * below -->
   </dependencies>
</module>

* I tried with or without a string <module name="javax.transaction.api/>. Some examples I found on the Internet include this. Some do not. It doesn't seem to matter if the error occurs or not.

ojdbc6.jar was copied from <oracle-home>\jdbc\lib\ojdbc6.jar.

I changed <wildfly-home>\standalone\configuration\standalone.xmlto include it in the tag <drivers>:

<driver name="oraclethin" module="com.oracle.ojdbc6">
    <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>
</driver>

This error message pops up when I'm cdin <wildfly-home>\binand runs .\standalone.bat:

15:17:13,415 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 33) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "datasources"),
    ("jdbc-driver" => "oraclethin")
]) - failure description: "WFLYJCA0041: Failed to load module for driver [com.oracle.ojdbc6]"

Three times I checked the spelling for everything. I tried to extract a few lines (and return them when nothing has changed). Does anyone see what I am missing?

+4

Source: https://habr.com/ru/post/1628570/


All Articles