Reputation: 79
I'm trying to generate the entities on jHipster, from the .xmi Modelio UML file, this error came up:
An error has occurred: WrongTypeException Error message: The type 'ELong' isn't supported by JHipster.
Upvotes: 0
Views: 104
Reputation: 79
The problem was after exporting the .xmi file, some of the entities attributes where exported in an unsupported jHipster type.
The solution can be: open the .xmi file, find the invalid ELong
type and replace it for a valid Long
type, also make sure that
href = pathmap://UML_LIBRARIES/UMLPrimitiveTypes.library.uml
Upvotes: 3