Building a new project up in this mutha, and I'm running into some problems:
I have a class that exists as the "many" side of a many to one relationship on three different classes.
I declared this entity as follows:
And the three classes that will use it can use it as follows:Code:entity --class ~.admin.Measurement
This field is optional for two of the classes, required for the third. Cool, right? But when I try to create an instance of one of the entities where Measurement is optional, I get this error:Code:field set --element ~admin.Measurement --fieldName defaultMeasurement
Is there some additional configuration I need to perform in this case, or am I declaring my field wrong?No converter found capable of converting from 'java.util.Set' to 'java.lang.String'


Reply With Quote