I have 2 questions regarding the so common Target Unreachable Exception. What's the best practice to handle it, for example you have: Country has City, City has Street. - do you put in Country's constructor new City(), and in City's constructor new Street() (so that you somehow have them into a centralized place, but always make objects which you might not need) OR you initialize the objects in various places in your code where you need them ? (spread all over your code) - and if the user doesn't type anything say for Street, in order to prevent the insertion of a blank row in the DB you put the street back to null. Where's the best place to put it back to null ? (say you have Cascade.ALL or Extended Context, otherwise you'd just not save it if you knew it's empty)
PS: why isn't JSF just instantiating what it needs, and Hibernate not persisting entities that have all persistent fields empty ? For performance or why ? Yet again, is it bad to have empty rows in db, just with PK and FKs ?
