Hi,
I have to enable my simple POJO's used with Spring/Hibernate to publish property changes. One way would be to use PropertyChangeSupport for the POJO's and do a firePropertyChange in every setter method.
This is not the preferred way because there are a lot of classes to be changed.
I found an interesting article about enabing this functionality in simple Java Beans using AOP (see http://www.damnhandy.com/?page_id=17).
I wonder if someone has managed to implement a similar approach using Spring's configuration?
Thanks and regards,
Michael


Reply With Quote