在Wildfly服务器上配置MariaDB驱动程序时出错

时间:2015-05-30 18:43:05

标签: java jboss mariadb wildfly-8

我正在尝试在Wildfly上配置MariaDB数据源。这似乎应该是一个简单的操作,但我似乎无法正确加载数据源模块。我已将maria-java-client-1.1.8.jar存档和module.xml文件添加到wildfly-8.2.0.Final/modules/com/mariadb/main目录中。 module.xml文件如下:

<module xmlns:"urn:jboss:module:1.1" name="com.mariadb">
    <resources>
        <resource-root path="mariadb-java-client-1.1.8.jar"/>
    </resources>
    <dependencies>
        <module name="javax.api"/>
        <module name="javax.transaction.api"/>
    </dependencies>
</module>

我还在standalone.xml文件中添加了一个驱动程序条目,如下所示:

<subsystem xmlns="urn:jboss:domain:datasources:2.0">
    <datasources>
        <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
                <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</connection-url>
            <driver>h2</driver>
            <security>
                <user-name>sa</user-name>
                <password>sa</password>
            </security>
        </datasource>
        <drivers>
            <driver name="h2" module="com.h2database.h2">
                <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
            </driver>
            <driver name="mariadb" module="com.mariadb"/>
        </drivers>
    </datasources>
</subsystem>

请注意,我现在只包含了驱动程序条目。在我正确加载模块后,我将添加数据源条目。

现在,当我启动服务器时,出现以下错误:

14:14:46,570 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 26) JBAS014613: Operation ("add") failed - address: ([
    ("subsystem" => "datasources"),
    ("jdbc-driver" => "mariadb")
]) - failure description: "JBAS010441: Failed to load module for driver [com.mariadb]"

根据我读过的所有内容,这是配置驱动程序的正确方法,但它对我不起作用。有谁知道我做错了什么?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

module.xml的第一行有拼写错误(在xmlns=...中使用冒号而不是等号):

您的版本: <module xmlns:"urn:jboss:module:1.1" name="com.mariadb">

正确版本: <module xmlns="urn:jboss:module:1.3" name="com.mariadb">