struts2 ejb hibernateを使用するWebアプリケーションpersistence.xml
で、展開時にファイルに書き込まれる特定の永続性ユニット名のエンティティを検索または作成するようにアプリケーションに指示することはできますか?
に2つの永続性ユニットがpersistence.xml
あり、jbossノードの下に1つのデータソース(2つの「local-tx-datasource」を含む)xmlファイルがあります。
明確にするために、つまり、私はこれを試しました。
@Entity
@PersistenceContext(unitName="MY JNDI NAME specified in persistence.xml")
public abstract class Vehicle {
動作しません。それからこれなどを試してみました。
@PersistenceContext(name="MY PERSISTENCE UNIT NAME specified in persistence.xml")
@PersistenceUnit(name="MY PERSISTENCE UNIT NAME specified in persistence.xml")
また、上記の「name=..」の代わりに「UnitName=..」を使用してこれらを試しましたが、何でも機能します...
[解決済み]
<.exclude-unlisted-classes>true<./exclude-unlisted-classes>で問題が解決しました