Skip to content
Advertisement

Persisting set of Enums in a many-to-many unidirectional mapping

I’m using Hibernate 3.5.2-FINAL with annotations to specify my persistence mappings. I’m struggling with modelling a relationship between an Application and a set of Platforms. Each application is available for a set of platforms.

From all the reading and searching I’ve done, I think I need to have the platform enum class be persisted as an Entity, and to have a join table to represent the many-to-many relationship. I want the relationship to be unidirectional at the object level, that is, I want to be able to get the list of platforms for a given application, but I don’t need to find out the list of applications for a given platform.

Here are my simplified model classes:

JavaScript

When I run the Hibernate hbm2ddl tool, I see the following (I’m using MySQL):

JavaScript

The appropriate foreign keys are also created from this table to the application table and platform table. So far so good.

One problem I’m running into is when I try to persist an application object:

JavaScript

What I would like to happen is for the appropriate rows in the Platform table to created, i.e. create a row for Windows and Linux, if they don’t already exist. Then, a row for the new application should be created, and then the mapping between the new application and the two platforms in the join table.

One issue I’m running into is getting the following runtime exception:

JavaScript

Somehow, the platform set is not being persisted when I try to persist the application. The cascade annotations are supposed to take care of that, but I don’t know what’s wrong.

So my questions are:

  1. Is there a better way to model what I want to do, e.g. is using an Enum appropriate?
  2. If my model is alright, how do I properly persist all of the objects?

I’ve been struggling with this for hours, and I’ve tried to recreate all of the code above, but it might not be complete and/or accurate. I’m hoping someone will point out something obvious!

Advertisement

Answer

You should decide whether your Platform is an entity or not.

If it’s an entity, it can’t be an enum, because list of possible platforms is stored in the database, not in the application. It should be a regular class with @Entity annotation and you will have a normal many-to-many relation.

If it isn’t an entity, then you don’t need TBL_PLATFORM table, and you don’t have a many-to-many relation. In this case you can represent a set of Platforms either as an integer field with bit flags, or as a simple one-to-many relation. JPA 2.0 makes the latter case simple with @ElementCollection:

JavaScript

JavaScript

and enum Platform without annotations.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement