jaxio / celerio-angular-quickstart

Generate an Angular 5 CRUD application from an existing database schema (we provide a sample one)
Apache License 2.0
481 stars 138 forks source link

My_ Prefix for "Package" and "Component" #54

Open CodeFreezr opened 7 years ago

CodeFreezr commented 7 years ago

Hello Together,

for an ITSM / CMDB Project we have a datamodel with an entity "Component" and "Package". This will be generated ootb to "MyComponent" resp. "MyPackage". For a couple of reasons we can't use this.

With the following entry in the celerio-maven-plugin.xml, we solved the "Package" assignment:

<entityConfig tableName="PACKAGE" entityName="Package">

But doing the same for "Component":

<entityConfig tableName="COMPONENT" entityName="Component">

We got a lot of errors after starting with "ng serve". See attached file. component_issue.txt

Did anyone have an idea how to solve this?