gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 11:29:21 27 4
gpt4 key购买 nike

我正在尝试在 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]"

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

预先感谢您的帮助!

最佳答案

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

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

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

关于java - 在 Wildfly 服务器上配置 MariaDB 驱动程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30549980/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com