Suppose I have objects, such as Business with a list of address objects and an Order that has a business.
Is it possible to configure the list of addresses from the Business object when ordering, and when the business is serialized, it includes a list?
I use ajax to retrieve data for the RIA, and when working with Order I really do not need these addresses, but when working with Business I need a list.
I also use Hibernate to save, so this is a really efficient and effective optimization.
java json jackson
Robby pond
source share