Introduce an annotation to disable ad-hoc null semantic of Hibernate components

Description

see http://forums.hibernate.org/viewtopic.php?t=993972

For the model

@Entity
public class Person {
private Address name = new Address();
...
@Embedded Address getAddress() {}
}

@Embeddable
public class Address {
public String getCity() {}
public String getStreet() {}
}

the following xhtml excerpt causes NPE constantly when editing a person which address properties hasn't been filled in yet

<h:inputText value="#{person.address.city}" />

I suggest introducing an annotation @Static which could be applied to Address class and lead to disabling null ad-hoc semantic on its instances.

For some environments such as user interface this may be considered as the default behavior. I suggest introducing an Hibernate configuration parameter which would switch off the semantic.

I would propose to consider embeddable classes as static mixins from OO design, not as just limited entities without identity. This point of view explains that embedded instance is a part of entity so it's lifecycle is the same as the entity's lifecycle. Thus constant presence of embeddable instance (property is never null) is the default behavior. Thus configuration parameter is "must have", not the thing which is "nice to have".

From the other hand null ad-hoc semantic is like dynamic mixins. So it would be nice to have a @Dynamic annotation to force this semantic for some components.

Activity

Show:

Brett MeyerJanuary 23, 2013 at 1:33 AM

As suggested, focusing on and duplicating the rest.

Ondra ŽižkaJanuary 15, 2013 at 2:29 PM
Edited

I'd rather not introduce a new annotation since there already is one with fitting semantics:

See HHH-7610.

Also, JPA wouldn't need an API change, just spec update.

Pavel HoralJanuary 15, 2013 at 11:15 AM

We need to make a single report for this so that people can vote on it. Here is a summary of related issues I found:

  • - suggestion to add nullable to @Embedded

  • - pretty much the first issue on this topic, closed by Gavin (3 votes, 10 watches)

  • https://issues.jboss.org/browse/HIBERNATE-50 - great discussion, wrong JIRA (12 votes, 13 watches)

  • - suggestion for a new annotation (3 votes, 5 watches)

  • - bug report on the behavior (8 votes, 10 watches)

  • - improvement request (5 votes, 4 watches)

We should focus on just one (either or HHH-7610) and vote it up. The rest can be probably closed as duplicates.

Duplicate

Details

Assignee

Reporter

Components

Priority

Created January 27, 2009 at 2:21 PM
Updated January 23, 2013 at 1:33 AM
Resolved January 23, 2013 at 1:33 AM