Lets say Car has a List of Wheel and the same time Wheel have a Car reference to the owner.
public class Car{
List<Wheel> wheels;
}
public class Wheel{
Car owner;
}
I ask this because in JPA is easy to operate like this rather than query again the database for getting the parent entity.