Issue Details (XML | Word | Printable)

Key: ANN-554
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Emmanuel Bernard
Reporter: Loïc Minier
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Hibernate Annotations

NPE with @Id on @OneToOne

Created: 12/Feb/07 08:04 AM   Updated: 03/May/09 02:58 PM
Component/s: binder
Affects Version/s: 3.2.1
Fix Version/s: 3.3.0.ga

Time Tracking:
Not Specified

Environment: Hibernate 3.2.2 GA, Hibernate Annotations 3.2.1, J2SE 1.6.0-b105 on Debian GNU/Linux sid, PostgreSQL 7.4


 Description  « Hide
Hi,

(Note: I originally reported this on the forum, but the lack of response suggests this might be a bug in Hibernate Annotations or Hibernate; the forum topic is at: http://forum.hibernate.org/viewtopic.php?t=970823)

I hope it's not a misuse of Hibernate, but I'm trying to use @Id on @OneToOne, and this causes the following NPE when running hbm2ddl:
java.lang.NullPointerException
at org.hibernate.util.StringHelper.qualify(StringHelper.java:264)
at org.hibernate.cfg.OneToOneSecondPass.doSecondPass(OneToOneSecondPass.java:196)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1130)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:296)
at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1115)
at org.hibernate.tool.ant.ConfigurationTask.getConfiguration(ConfigurationTask.java:56)
at org.hibernate.tool.ant.HibernateToolTask.getConfiguration(HibernateToolTask.java:287)
at org.hibernate.tool.ant.Hbm2DDLExporterTask.execute(Hbm2DDLExporterTask.java:45)
at org.hibernate.tool.ant.HibernateToolTask.execute(HibernateToolTask.java:171)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
at org.apache.tools.ant.Task.perform(Task.java:364)
at org.apache.tools.ant.Target.execute(Target.java:341)
at org.apache.tools.ant.Target.performTasks(Target.java:369)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
at org.apache.tools.ant.Main.runBuild(Main.java:668)
at org.apache.tools.ant.Main.startAnt(Main.java:187)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)



What I'm trying to do at the application level is:
Foo class and table
long foo_id, primary key
FooData fooData, nulllable=true


FooData class and table
foo_id references Foo(foo_id), nullable=false


This is expressed in Java as:
@Entity
@Table(name = "foo")
public class Foo {
   @Id @GeneratedValue
   @Column(name = "foo_id")
   Long id;

   @OneToOne(mappedBy = "foo", cascade = CascadeType.ALL)
   FooData fooData;
...
@Entity
@Table(name = "foo_data")
public class FooData {
   @Id
   @OneToOne
   @JoinColumn(name = "foo_id", nullable = false)
   Foo foo;



This causes a NPE here.

If I use a real Id on FooData, e.g.:
@Id
@Column(name = "foo_data_id")
Long id;

it works, and I end up with:
- foo_id in table foo as a primary key
- foo_data_id in table foo_data as a primary key
- foo_id in table foo_data not null
- foo_id in table foo_data references foo_id in table foo

I don't want a foo_data_id, I don't need it, hence the lack of it which leads to the NPE.

Bye,

 All   Comments   Work Log   Change History   FishEye      Sort Order: Ascending order - Click to sort in descending order
Emmanuel Bernard added a comment - 12/Feb/07 08:31 AM
Answered on the forum post. I need to fix the NPE though

Emmanuel Bernard added a comment - 12/Feb/07 11:19 PM
happens even witht he described workaround apparently, need to have a look at it

Loïc Minier added a comment - 06/Mar/07 09:21 AM
I personally still experience the issue -- but only with the mappedBy OneToOne, not if I remove it --, and was not able to locate the fix you committed by looking at http://anonsvn.jboss.org/repos/hibernate/trunk/HibernateExt nor in http://anonsvn.jboss.org/repos/hibernate/trunk/Hibernate3; could you point me to the fix?

Thanks!


Syvalta added a comment - 23/Mar/07 07:52 AM
Something probably related to this bug. I'm quite sure I have misconfigured something, but I get the following error when using OneToOne mappings. Failing more gracefully would be nice.

Caused by: javax.persistence.PersistenceException: java.lang.NullPointerException
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:258)
at org.hibernate.ejb.HibernatePersistence.createEntityManagerFactory(HibernatePersistence.java:120)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:51)
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:33)
... 39 more
Caused by: java.lang.NullPointerException
at org.hibernate.cfg.OneToOneSecondPass.doSecondPass(OneToOneSecondPass.java:135)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1130)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:316)
at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1115)
at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1265)
at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:150)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:884)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:186)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:246)
... 43 more

benjamin morelle added a comment - 27/Jun/08 04:22 AM
I have the same exception when I have a "mapped by" not correct.

Serdyn du Toit added a comment - 03/May/09 02:58 PM
Had a similar error. I made a few changes to entities without one-to-one mappings. During attempting to solve this I commented all the one-to-one mappings from OTHER entities - this then gave a different error.

The error is discussed here:
https://svn.cargo.codehaus.org/browse/GRAILS-4215?focusedCommentId=169191&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel

My problem:
I had the jbossall-client.jar on the classpath which references similar classes in similar packages.

Just mentioning this here in case someone with similar issues stumbles upon this page.