First of all I'd like to thank everyone that's even reading this.
I'm trying to generate code for my application via reverse engineering tool but I'm getting this error:
Code:
org.hibernate.MappingException: An association from the table
module_application_status refers to an unmapped class: persistenceGen.ModuleApplication
An association from the table module_application_status refers to an unmapped class: persistenceGen.ModuleApplication
This is the part of my database diagram that generates the error:
What seems to be happening is that the code generation treats the module_application table as a pure link table between module and application tables, not generating the ModuleAppication class.
There is probably a way of forcing the generation of this class without loosing the Application Set in the Module class, but as I'm still learning how to use the Hibernate, I don't know how. Can anyone help me with that? Any additional information requested will be promptly posted here.