Hi,
we’ve found the following issue when trying to export & import an AppFolder through the entity inspector.
When trying to do so, at the import the following error occurs:
2016-09-27 11:20:35.414 ERROR [http-nio-8080-exec-13/app/admin] com.haulmont.cuba.gui.app.core.entityinspector.EntityInspectorBrowse - Entities import error
com.haulmont.cuba.core.global.RemoteException: Can't find setter for property 'locName' at class class com.haulmont.cuba.core.entity.AppFolder
at com.haulmont.cuba.core.sys.ServiceInterceptor.aroundInvoke(ServiceInterceptor.java:83) ~[na:na]
The errors in the following Browser: cuba/EntityInspectorBrowse.java at 9b2bc1659df9b28afcfe7b1b83c6ad92cb395661 · cuba-platform/cuba · GitHub
I think one solution could be to do something like this:
if (!metaProperty.annotatedElement.isAnnotationPresent(com.haulmont.chile.core.annotations.MetaProperty)) {
entityImportView.addProperty(metaProperty.getName());
}
Because attributes with @MetaProperty Annotation should probably be excluded, right?
Bye,
Mario