Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8330665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T02:11:20+00:00 2026-06-09T02:11:20+00:00

When I run the following class: @Entity public class SurveyResponse { @Id private String

  • 0

When I run the following class:

@Entity
public class SurveyResponse {

    @Id
    private String assignmentId;

    public String getAssignmentId() {
        return assignmentId;
    }

    public void setAssignmentId(String assignmentId) {
        this.assignmentId = assignmentId;
    }

    @ElementCollection
    @MapKeyColumn(name="topic")
    @Column(name="relevance")
    @CollectionTable(name="RelevanceScore", joinColumns=@JoinColumn(name="assignmentId"))
    Map<Topic, Relevance> topicRelevance = new HashMap<Topic, Relevance>(); // maps from attribute name to value    

    public static void main( String[] args ) {
        Configuration config = new Configuration();
        config.addAnnotatedClass(SurveyResponse.class);
        config.configure( "hibernate.cfg.xml" );        
        new SchemaExport(config).create( true, true );      
    }

}

it creates the tables SurveyResponse and RelevanceScore as expected. However, when I place the @Id annotation above the getter for the primary key…

@Entity
public class SurveyResponse {

    private String assignmentId;

    @Id 
    public String getAssignmentId() {
        return assignmentId;
    }

    ...

}

… it fails to produce table RelevanceScore. Why?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T02:11:21+00:00Added an answer on June 9, 2026 at 2:11 am

    Short answer : you have to choose whether you put your annotations on fields or on getters, you cannot mix them.

    Long answer : Hibernate looks for the @Id annotation ; if it is on a field, it looks for all other annotations on fields, and doesn’t even bother to look on getters. The opposite also holds true : if the @Id annotation is on a getter, the annotations you put on other fields won’t be taken into account.

    This is why your tables aren’t generated if you only move your @Id annotation on the getAssignment method ; you should also put all the annotations that describe the topicRelevance field on its related getter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I run the following program: class Runit{ public static void main(String[] argsWut) throws
I run the following code from command line: public class MemoryTest { public static
When I run the following test, I get an ArgumentOutOfRangeException: [TestClass] public class ReproduceException
I am trying to run the following simple code, public abstract class Shape{ abstract
I have the following code #include <iostream> #include <vector> class Entity { public: virtual
I have this code @Entity @Table(name = picture) public class Picture implements Serializable {
I have the following inner class: @Entity @Table(name = SATTET0) public class SATTET0Key {
I'm just experimenting with Optimistic locking. I have the following class: @Entity public class
To start I have two entities. User.java @Entity public class User { @Id private
When I run the following code I get B as expected: class A {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.