Hi, wondering if it's possible to listen for changes in one process from another process?
ie: process A changes an entity
process B listens for @PostPersist
thanks
Hi, wondering if it's possible to listen for changes in one process from another process?
ie: process A changes an entity
process B listens for @PostPersist
thanks
This is not supported. You may be able to implement your own cross process event listeners based on the JPA event listeners if every process will listen to its own events and will report to other processes.