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 4321198
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T08:43:02+00:00 2026-05-21T08:43:02+00:00

Probably a common problem, but anyway: Let’s say I have a simple entity Task

  • 0

Probably a common problem, but anyway:

Let’s say I have a simple entity Task with a list of Activity entities:

@Entity
@Table(name = "task")
public class Task {

    @Id
    @Column(name = "id")
    private Integer id;

    @OneToMany
    @JoinColumn(name = "task_id")
    private List<Activity> activities;
}

And Activity entity is pretty simple:

@Entity
@Table(name = "activity")
public class Activity {

    @Id
    @Column(name = "id")
    private Integer id;

    @Column(name = "activity_type")
    private int type;
}

And here I want to do some magic — based on Activity type I want hibernate to stuff Task.activities with different Activity implementation, for example if Activity.type == 1, I want to have ActivityAImpl there, if Activity.type == 2 – it should be ActivityBImpl and so on.. Basically all my activities would implement a single interface with a some method “execute()”.

Hopefully there is a simple solution for that.

Thanks for your help!

  • 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-05-21T08:43:02+00:00Added an answer on May 21, 2026 at 8:43 am

    Take a look at @MappedSuperClass and @Discriminator annotions. I guess that is what you are looking for. Here is an example.

    @Entity
    @Table(name = "activity)
    @Inheritance
    @DiscriminatorColumn(name = "activity_type")
    public abstract class Activity {
    
        @Id
        @Column(name = "id")
        private Integer id;
    
        @Column(name = "activity_type")
        private int type;
    
        public abstract void execute();
    }
    
    @Entity
    @DiscriminatorValue("1")
    public class ActivityImplA extends Activity {
    
         public void execute() {
            .... Impl a
         }
    
    }
    
    @Entity
    @DiscriminatorValue("2")
    public class ActivityImplB extends Activity {
    
         public void execute() {
            .... Impl b
         }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Probably a long question for a simple solution, but here goes... I have a
This probably has a simple answer, but I must not have had enough coffee
This probably sounds really stupid but I have noo idea how to implement jquery's
This is probably one of the most common tasks / problems when programming; You
Probably a really simple one this - I'm starting out with C# and need
Probably an easy one: Are there any rules of thumb or pointers that could
Probably not much more to elaborate on here - I'm using a NumericStepper control
I probably spend far too much time trying to make my visual interfaces look
As probably many people around here I read a few webcomics. Drowtales is my
This question would probably apply equally as well to other languages with C-like multi-line

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.