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

  • SEARCH
  • Home
  • 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 8141731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:36:37+00:00 2026-06-06T12:36:37+00:00

I am trying to do something like this, but using @One-To-Many instead of @ElementCollection.

  • 0

I am trying to do something like this, but using @One-To-Many instead of @ElementCollection.

public class Book {
    ...
    @ElementCollection
    Set<String> tags;
    ...
}

This creates two tables, one for Book and one for the Tags with (BookID, Tag) which works fine, except for the fact that I can’t use Criteria with @ElementCollection.

So I changed it and made a wrapper class for the tags:

public class Book {
    ...
    @OneToMany(...)
    Set<BookTag> tags;
    ...
}


public class BookTag {
    ...
    String tag;
    ...
}

The problem is that using @OneToMany annotation hibernate creates 3 tables: one for the books, one for the tags, and one to join books and tags. This solutions works perfectly but I would like to have 2 tables instead of 3, since the Tag class contains only a String.

Is there any way to use @OneToMany and make hibernate create 2 tables like it does with @ElementCollection ?

  • 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-06T12:36:39+00:00Added an answer on June 6, 2026 at 12:36 pm

    Yes, by specifying that the OneToMany must use a join column instead of the default (which uses a join table):

    @OneToMany(...)
    @JoinColumn(name = "BOOK_ID")
    private Set<BookTag> tags;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying something like this, but this example does not work. jsObj = {};
I'm trying to do something like this post but with Excel VBA. I would
I'm trying to do something like this in Java: public static <T> T foo()
I'm trying to replace something like this: NSSomeFunction(@some var, @another one) With: NSSomeOhterFunction(@some var)
I'm trying something like this: [ServiceContract ( CallbackContract = typeof (CallbackContract_1), CallbackContract = typeof
I'm trying to do something like this... <Style x:Key=TwoByTwoGridStyle TargetType=Grid> <Setter Property=Grid.RowDefinitions> <Setter.Value> <ControlTemplate>
I'm trying to do something like this: SELECT MAX( ADDDATE(expirationdate, INTERVAL 1 YEAR), ADDDATE(now(),
I'm trying to do something like this in C++: if(){ int a; } else
I am trying to do something like this: property = 'name' value = Thing()
I am trying to do something like this ruby test.rb | source /dev/stdin where

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.