0

我正在从 Glassfish 更改为 Jboss 7。我在 Glassfish 服务器中配置了一个数据源,该数据源汇集在服务器上,但不是 XA。我正在尝试这个,但是每次我打开 admin web gui 时,驱动程序元素都会被截断为<driver name="postgresql" .. />. 一定有问题,因为我无法登录我的应用程序。如何配置在 JBoss 7 上汇集的数据源?

            <drivers>
                <driver name="postgresql" module="org.postgresql">
                    <datasource-class>org.postgresql.ds.PGConnectionPoolDataSource</datasource-class>
                </driver>
            </drivers>

这是module.xml:

<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.1" name="org.postgresql">
    <resources>
        <resource-root path="postgresql-9.2-1002.jdbc4.jar"/>
    </resources>
    <dependencies>
        <module name="javax.api"/>
        <module name="javax.transaction.api"/>
    </dependencies>
</module>
4

1 回答 1

0

在您的 domain.xml/standalone.xml 中,您可以指定您的数据源:

    <subsystem xmlns="urn:jboss:domain:datasources:1.1">
        <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</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>
            </drivers>
        </datasources>
    </subsystem>
于 2013-06-28T14:41:03.740 回答