1

Java初心者です。JTA トランザクションを使用して永続化ユニットを構成するのに問題があります。すでに定義、構成、および入力されている PostgreSQL データベースを使用する必要があります。netbeans を使用して、persistance.xmlandglassfish-resources.xmlを fallows として作成しました。

<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="WellWatcherPU" transaction-type="JTA">
         <jta-data-source>WellWatcherDB</jta-data-source>
         <exclude-unlisted-classes>false</exclude-unlisted-classes>
         <properties>
             <property name="eclipselink.logging.logger" value="org.eclipse.persistence.logging.DefaultSessionLog"/>
             <property name="eclipselink.logging.level" value="FINE"/>
         </properties>
     </persistence-unit>
</persistence>

<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.PGSimpleDataSource" 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="post-gre-sql_geowellex_geowellexPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.DataSource" statement-timeout-in-seconds="-1" steady-pool-size="8" validate-atmost-once-period-in-seconds="0" wrap-jdbc-objects="false">
        <property name="serverName" value="localhost"/>
        <property name="portNumber" value="5432"/>
        <property name="databaseName" value="DBNAME"/>
        <property name="User" value="USER"/>
        <property name="Password" value="PASSWORD"/>
        <property name="URL" value="jdbc:postgresql://localhost:5432/DBNAME"/>
        <property name="driverClass" value="org.postgresql.Driver"/>
    </jdbc-connection-pool>
    <jdbc-resource enabled="true" jndi-name="WellWatcherDB" object-type="user" pool-name="post-gre-sql_geowellex_geowellexPool"/>
</resources>

そして、これが EntityManagerFactory と EntityManager を取得する方法です (netBeans の例で使用されているように)

public class EUserDao {

@Resource
private UserTransaction utx = null;
@PersistenceUnit(unitName = "WellWatcherPU")
private EntityManagerFactory emf = null;

public EntityManager getEntityManager() {
    return emf.createEntityManager();  <-------- NullPointerException here
}

public EUser getOne(long userId){
    EntityManager em = getEntityManager();
    try {
        return em.find(EUser.class, userId);
    } finally {
        em.close();
    }
}

編集:

そして、これが私のglassfishデプロイログです:

情報: [EL 構成]: 2012-05-10 12:01:13.534--ServerSession(2017352940)--Connection(1901223982)--Thread(Thread[admin-thread-pool-4848(5),5,grizzly- kernel])--connecting(DatabaseLogin( platform=>DatabasePlatform ユーザー名=> "" connector=>JNDIConnector データソース名=>null ))

情報: [EL 構成]: 2012-05-10 12:01:13.534--ServerSession(2017352940)--Connection(1462281761)--Thread(Thread[admin-thread-pool-4848(5),5,grizzly- kernel])--接続済み: jdbc:postgresql://localhost:5432/geowellex?loginTimeout=0&prepareThreshold=0 ユーザー: geowellex データベース: PostgreSQL バージョン: 9.1.3 ドライバー: PostgreSQL ネイティブ ドライバー バージョン: SSL を使用する PostgreSQL 8.3 JDBC3 (ビルド 603 )

情報: [EL 構成]: 2012-05-10 12:01:13.534--ServerSession(2017352940)--Connection(766700859)--Thread(Thread[admin-thread-pool-4848(5),5,grizzly- kernel])--connecting(DatabaseLogin( platform=>PostgreSQLPlatform ユーザー名=> "" connector=>JNDIConnector データソース名=>null ))

どうしたの?

4

2 に答える 2

4

最も可能性の高い問題は、EUserDao が通常のクラスにすぎないことです。インジェクションは、コンテナー管理クラスに対してのみ機能します。@PersistenceUnit や @Resource などのアノテーションは、通常のクラスでは処理されません。

次のタイプのクラスはコンテナ管理クラスです (これらのクラスでは @PersistenceUnit を使用できます)。

  • サーブレット: サーブレット、サーブレット フィルター、イベント リスナー
  • JSP: タグ ハンドラ、タグ ライブラリ イベント リスナ
  • JSF: スコープ付きマネージド Bean
  • JAX-WS: サービス エンドポイント、ハンドラー
  • EJB: Bean、インターセプター
  • マネージド Bean: マネージド Bean
  • CDI: CDI スタイルのマネージド Bean、デコレーター
  • Java EE プラットフォーム: メイン クラス (静的)、ログイン コールバック ハンドラ
于 2012-05-10T15:13:54.037 に答える
2

あなたのコードで次のように宣言していることがわかります。

private EntityManagerFactory emf = null;

しかし、決して作成しないでください...このように

emf = Persistence.createEntityManagerFactory("WellWatcherPU");

そのため、オブジェクトを使用すると Null Pointer Exception が発生します。

public EntityManager getEntityManager() {
    return emf.createEntityManager();  <-------- NullPointerException here
}
于 2013-02-28T23:37:56.047 に答える