2017-02-22 20 views
0

私はGlassfish 4.1を使用しています。jta-data-sourceファイルの作成方法は?

<persistence-unit name="PU" transaction-type="JTA">   
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> 
    <jta-data-source>PostgreDS</jta-data-source> 
    <exclude-unlisted-classes>false</exclude-unlisted-classes> 
</persistence-unit> 

私はどのようにか「PostgreDS」ファイルを作成するためには考えている:ここに は、私は私のpersistence.xmlファイルは次のようになりたい方法です。

答えて

0

データソースをglassfish-resources.xmlファイルに記述し、このファイルをwebapp/WEB-INFフォルダに配置する必要があります。

これを見てくださいarticle

0

mexes_sへの完全な回答。これはPostgreSQL接続を設定するためのファイルです。

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE resources PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Resource Definitions//EN" 
    "http://glassfish.org/dtds/glassfish-resources_1_5.dtd"> 
<resources> 
<jdbc-connection-pool 
     allow-non-component-callers="false" 
     associate-with-thread="false" 
     connection-creation-retry-attempts="0" 
     connection-creation-retry-interval-in-seconds="10" 
     connection-leak-reclaim="false" 
     connection-leak-timeout-in-seconds="0" 
     connection-validation-method="auto-commit" 
     datasource-classname="org.postgresql.ds.PGPoolingDataSource" 
     fail-all-connections="false" 
     idle-timeout-in-seconds="300" 
     is-connection-validation-required="false" 
     is-isolation-level-guaranteed="true" 
     lazy-connection-association="false" 
     lazy-connection-enlistment="false" 
     match-connections="false" 
     max-connection-usage-count="0" 
     max-pool-size="32" 
     max-wait-time-in-millis="60000" 
     name="java:app/jdbc/PostgreSQLPool" 
     non-transactional-connections="false" 
     pool-resize-quantity="2" 
     res-type="javax.sql.ConnectionPoolDataSource" 
     statement-timeout-in-seconds="-1" 
     steady-pool-size="8" 
     validate-atmost-once-period-in-seconds="0" 
     wrap-jdbc-objects="false">  
    <property name="user" value="postgres"/> 
    <property name="portNumber" value="5432"/> 
    <property name="password" value="postgres"/> 
    <property name="serverName" value="localhost"/> 
    <property name="databaseName" value="PostgreSQLDB"/> 
    <property name="URL" value="jdbc:postgresql://localhost:5432/PostgreSQLDB"/> 
    <property name="driverClass" value="org.postgresql.ds.PGPoolingDataSource"/> 
    <property name="connectionAttributes" value=";create=true"/> 
</jdbc-connection-pool> 
<jdbc-resource 
     enabled="true" 
     jndi-name="java:app/jdbc/PostgreSQLDS" 
     object-type="user" 
     pool-name="java:app/jdbc/PostgreSQLPool"/> 
</resources>