1
で解雇ことはありません私はデータベースでそれを見ることができますが、リスナーは決して呼び出されません。私はリスナーが作成されたのを見ていない。私はMavenプラグイン経由でWildfly 10を使用しています。私は私のpersistence.xmlはこのようになりますEntityManager
@EntityListenerは、私はこのような実体を持ってwildlfy 10
@PersistenceContext
を経由して注入:
<?xml version="1.0" encoding="UTF-8"?>
<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="mev" transaction-type="JTA">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<properties>
<property name="hibernate.connection.url" value="jdbc:h2:mem:mev;DB_CLOSE_DELAY=-1" />
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"></property>
<property name="hibernate.connection.driver_class" value="org.h2.Driver" />
<property name="hibernate.hbm2ddl.auto" value="update" />
<property name="hibernate.connection.release_mode" value="after_transaction" />
<property name="hibernate.connection.password" value="admin" />
<property name="hibernate.connection.username" value="admin" />
</properties>
</persistence-unit>
</persistence>
リスナーに関連する注釈が抽象クラスに含まれている可能性があるかどうかはわかりません – Koitoer
http://stackoverflow.com/questions/7936917/does-entitylistener-works-with-mappedsuperclass-as私が見つけたウェルと他のリソース –
明らかに、あなたは正しいです、バマー! –