1

How to connect Jboss-as-7.1.1 with Postgresqlの指示に従って、Postgresql JDBC を JBoss 7.1.1 Final にモジュールとしてデプロイします。

  1. パス $JBOSS_HOME/modules/org/postgresql/main を作成しました
  2. $JBOSS_HOME/modules/org/postgresql/main/modules.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"/>
         <module name="javax.servlet.api" optional="true"/>
     </dependencies>
    </module>
    
  3. postgresql-9.2-1002.jdbc4.jar を配置した同じディレクトリに

  4. $JBOSS_HOME/bin/jboss-cli --connect を実行して jboss-cli を開き、次のコマンドを実行しました。

    /subsystem=datasources/jdbc-driver=postgresql-driver:add(driver-name=postgresql-driver, driver-class-name=org.postgresql.Driver, driver-module-name=org.postgresql)
    

このエラーが発生した後:

    Failed to get the list of the operation properties: "JBAS010850: No
    handler for operation read-operation-description at address [
    ("subsystem" => "datasources"),
    ("jdbc-driver" => "postgresql-driver") ]"
4

1 に答える 1