Joined: Fri Mar 23, 2012 5:22 am Posts: 2
|
i am using hibernate 4.1.0 final and jpa and using filter to get the filtered objects. but there is one issue with it. there is customer object and customer relationship object. customer relation defines a relation with another customer. classes look like : Customer{ String id; CustomerRelationship customerRelationships; } CustomerRelationship { Customer customer; Customer relatedCustomer; String relationship; } i applied filter on customer object and retrieve the customer relationships. since Customer object is also there in customerrelationship, i think the filter is also applied to it. is there any using annotations to disable the filter or any other solution.
|
|