1. Interface-mappings for AOP mixin persistence forum.hibernate.orgI'm currently trying to integrate Hibernate into an AOP system that uses Mixins/Introductions to add dynamic functionality to domain objects at runtime. A rather contrived example should demonstrate the basic scenario: Code: public interface Document { public Long getId(); public void setId(Long id); public String getData(); public void setData(String ... |
2. Interface-mappings for AOP mixin persistence forum.hibernate.orgI posted this to Hibernate Beginners, but retrospectively think it's perhaps more suited here: I'm currently trying to integrate Hibernate into an AOP system that uses Mixins/Introductions to add dynamic functionality to domain objects at runtime. A rather contrived example should demonstrate the basic scenario: Code: public interface Document { public Long getId(); public void ... |