I have two projects:
- beans.jar with JPA entities (annotated for JSON/XML serialization) and
persistence.xml
file - rest.war with REST application, where are JPA
EntityManagerFactory
instantiated with customized properties such ashibernate.connection.*
I want to distribute beans.jar for better client side programming convenience. So far good.
Some entities have code in @PrePersist
event (salting password hash in fact), which I don't want to distribute. I can push that code to JPA entity listener, but listener class is referenced in @EntityListeners
annotation and therefor must be in beans.jar as well.
Is it possible to setup JPA entity listener for one (or all) entity classes on runtime, i.e. in rest.war project?
Maybe there are some Hibernate property for this, which I overlooked... Thanks.
This sets up a generic EntityListener for all Entities.
Create a file named orm.xml and put it in the same directory as the persistence.xml file (e.g. META-INF). I am not sure if this can be put in the war file. The contents of the orm.xml file should be the following:
Then create a class called Listener.