• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hibernate collections error

 
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm creating a feedback table to hold comments left by users for a particular venue so i'm using a FeedbackEmb object with the VenueEnt object. Here is the code in my VenueEnt



Now when running my action class, it adds the feedback obj and on commit i get this error.

Hibernate:
insert
into
VenueEnt_feedback
(VenueEnt_id, VENUE_FEEDBACK_ID, comments, date, name)
values
(?, ?, ?, ?, ?)
20:54:56,158 INFO LongType:140 - could not bind value 'POST_INSERT_INDICATOR' to parameter: 2; org.hibernate.id.IdentifierGeneratorFactory$2

I'm not sure what POST_INSERT_INDICATOR is but it should be an auto number.
Please help
 
Ranch Hand
Posts: 141
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try to set the fetch attribute of CollectionOfElements to EAGER and try.
I am just guessing. lets see if it works
 
Joshua Elkino
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


This yeilds the same result.
 
reply
    Bookmark Topic Watch Topic
  • New Topic