-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Erro in migration hibernate 3.4 to 4.1.3....
PostPosted: Fri Jul 20, 2012 3:54 pm 
Newbie

Joined: Fri Jul 20, 2012 3:26 pm
Posts: 2
Dear Peoples,

Here is the mapping of my entities:

Code:
@Entity
@Table(name = "tb_documento_fiscal")
@Inheritance(strategy = InheritanceType.JOINED)
public abstract class DocumentoFiscal {
        @Id
   @GeneratedValue(strategy = GenerationType.IDENTITY)
   private Long id;
        ....
}

Code:
@Entity
@Table(name = "tb_nota_fiscal")
@PrimaryKeyJoinColumn(name = "id_documento_fiscal")
public class NotaFiscal extends DocumentoFiscal {
     ....
}


and tables:

Code:
CREATE TABLE aplic.tb_documento_fiscal (
  id BIGSERIAL,
...
CONSTRAINT tb_documento_fiscal_pkey PRIMARY KEY(id),
...
);


Code:
CREATE TABLE aplic.tb_nota_fiscal (
  id_documento_fiscal BIGINT NOT NULL,
...
CONSTRAINT tb_nota_fiscal_pkey PRIMARY KEY(id_documento_fiscal),
...


This mapping worked perfectly in version 3.4, but when I migrated to version 4.1.3 now has the following error when I try to insert a record NotaFiscal:

Code:
Exception in thread "main" org.hibernate.exception.SQLGrammarException: The column name id_documento_fiscal was not found in this ResultSet.
   at org.hibernate.exception.internal.SQLStateConversionDelegate.convert(SQLStateConversionDelegate.java:122)
   at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQLExceptionConverter.java:49)
   at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:125)
   at org.hibernate.engine.jdbc.spi.SqlExceptionHelper.convert(SqlExceptionHelper.java:110)
   at org.hibernate.engine.jdbc.internal.proxy.AbstractResultSetProxyHandler.continueInvocation(AbstractResultSetProxyHandler.java:108)
   at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81)
   at $Proxy36.getLong(Unknown Source)
   at org.hibernate.id.IdentifierGeneratorHelper.get(IdentifierGeneratorHelper.java:149)
   at org.hibernate.id.IdentifierGeneratorHelper.getGeneratedIdentity(IdentifierGeneratorHelper.java:92)
   at org.hibernate.id.IdentityGenerator$GetGeneratedKeysDelegate.executeAndExtract(IdentityGenerator.java:100)
   at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:58)
   at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2767)
   at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3278)
   at org.hibernate.action.internal.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:81)
   at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:362)
   at org.hibernate.engine.spi.ActionQueue.addResolvedEntityInsertAction(ActionQueue.java:203)
   at org.hibernate.engine.spi.ActionQueue.addInsertAction(ActionQueue.java:183)
   at org.hibernate.engine.spi.ActionQueue.addAction(ActionQueue.java:167)
   at org.hibernate.event.internal.AbstractSaveEventListener.addInsertAction(AbstractSaveEventListener.java:320)
   at org.hibernate.event.internal.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:287)
   at org.hibernate.event.internal.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:193)
   at org.hibernate.event.internal.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:126)
   at org.hibernate.event.internal.DefaultPersistEventListener.entityIsTransient(DefaultPersistEventListener.java:208)
   at org.hibernate.event.internal.DefaultPersistEventListener.onPersist(DefaultPersistEventListener.java:151)
   at org.hibernate.event.internal.DefaultPersistEventListener.onPersist(DefaultPersistEventListener.java:78)
   at org.hibernate.internal.SessionImpl.firePersist(SessionImpl.java:844)
   at org.hibernate.internal.SessionImpl.persist(SessionImpl.java:819)
   at org.hibernate.internal.SessionImpl.persist(SessionImpl.java:823)
   at testes.CoringaMizael.main(CoringaMizael.java:115)
Caused by: org.postgresql.util.PSQLException: The column name id_documento_fiscal was not found in this ResultSet.
   at org.postgresql.jdbc2.AbstractJdbc2ResultSet.findColumn(AbstractJdbc2ResultSet.java:2546)
   at org.postgresql.jdbc2.AbstractJdbc2ResultSet.getLong(AbstractJdbc2ResultSet.java:2415)
   at com.mchange.v2.c3p0.impl.NewProxyResultSet.getLong(NewProxyResultSet.java:2625)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
   at java.lang.reflect.Method.invoke(Unknown Source)
   at org.hibernate.engine.jdbc.internal.proxy.AbstractResultSetProxyHandler.continueInvocation(AbstractResultSetProxyHandler.java:104)
   ... 24 more


Can anyone help me? thank you


Top
 Profile  
 
 Post subject: Re: Erro in migration hibernate 3.4 to 4.1.3....
PostPosted: Sat Jul 21, 2012 1:18 pm 
Newbie

Joined: Fri Jul 20, 2012 3:26 pm
Posts: 2
Peoples, this would be a bug? For I find nothing about it, also not seen anyone using this with hibernate 4.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.