wildfly - 安装 postgres 驱动程序 jar
wildfly - installing postgres driver jar
我在安装 postgres 驱动程序时遇到困难。我尝试了很多东西:
https://docs.jboss.org/author/display/WFLY10/Application+deployment
一个。尝试了 "deploying" JAR(来自 CLI 和管理控制台 UI)
https://sites.google.com/site/jmdstips/jboss-wildfly/postgresql-on-wildfly---xa-datasource
一个。尝试将模块定义放入 modules/org/postgresql ...
b。尝试将模块定义放入 modules/system/layers/base/org/postgresql
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.3" name="org.postgres">
<resources>
<resource-root path="postgresql-9.4.1212.jre7.jar" />
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
<module name="javax.servlet.api" optional="true"/>
</dependencies>
</module>
并且:
<drivers>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
<driver name="postgresql" module="org.postgresql">
<datasource-class>org.postgresql.Driver</datasource-class>
<xa-datasource-class>org.postgresql.xa.PGXADataSource</xa-datasource-class>
</driver>
</drivers>
所有这些之后,我得到了这个错误。所以,我认为 wildfly 可以 "see" 模块,但有些地方出了问题。
23:24:15,889 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 33) WFLYCTL0013: Operation ("add") failed - address: ([
("subsystem" => "datasources"),
("jdbc-driver" => "postgresql")
]) - failure description: "WFLYJCA0041: Failed to load module for driver [org.postgresql]"
事实证明,我在 standalone.xml 中使用 "org.postgres" 作为模块名称,而不是 "org.postgresql",这是我在 module.xml[=10= 中声明的]
简答:将驱动放在/wildfly/standalone/deployments
文件夹中,它会自动部署驱动
我也遇到了这个错误,这是由于 module.xml 没有正确的资源根
我在安装 postgres 驱动程序时遇到困难。我尝试了很多东西:
https://docs.jboss.org/author/display/WFLY10/Application+deployment
一个。尝试了 "deploying" JAR(来自 CLI 和管理控制台 UI)
https://sites.google.com/site/jmdstips/jboss-wildfly/postgresql-on-wildfly---xa-datasource
一个。尝试将模块定义放入 modules/org/postgresql ...
b。尝试将模块定义放入 modules/system/layers/base/org/postgresql
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.3" name="org.postgres">
<resources>
<resource-root path="postgresql-9.4.1212.jre7.jar" />
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
<module name="javax.servlet.api" optional="true"/>
</dependencies>
</module>
并且:
<drivers>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
<driver name="postgresql" module="org.postgresql">
<datasource-class>org.postgresql.Driver</datasource-class>
<xa-datasource-class>org.postgresql.xa.PGXADataSource</xa-datasource-class>
</driver>
</drivers>
所有这些之后,我得到了这个错误。所以,我认为 wildfly 可以 "see" 模块,但有些地方出了问题。
23:24:15,889 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 33) WFLYCTL0013: Operation ("add") failed - address: ([
("subsystem" => "datasources"),
("jdbc-driver" => "postgresql")
]) - failure description: "WFLYJCA0041: Failed to load module for driver [org.postgresql]"
事实证明,我在 standalone.xml 中使用 "org.postgres" 作为模块名称,而不是 "org.postgresql",这是我在 module.xml[=10= 中声明的]
简答:将驱动放在/wildfly/standalone/deployments
文件夹中,它会自动部署驱动
我也遇到了这个错误,这是由于 module.xml 没有正确的资源根