How does OJB handle things like:
public class Person
{
String Name;
Address myAddress;
}
public class Address
{
String street1;
String street2;
String city;
String state;
String zip;
}
Would the address instance in a person instance be persistent if you stored the person instance?
Or what if that person class looked like this:
public class Person
{
String Name;
java.util.List addresses; // list of address objects
}
Does ojb have any way of dealing with that?
Travis Reeder
Chief Software Architect
www.ThinkVirtual.com
|