Clarify something for me, please. I’m migrating my project from Cuba in Java to Jmix in Kotlin.
If I have a field like this:
@JvmField
@Column(name = "SHIPPING", nullable = false)
var shipping: @NotNull Boolean? = false
When running my application, I get a runtime error stating Can't find getter for property 'shipping' at...
Before I go in and add get
to every attribute of every entity, is that the different/preferred way of addressing this error?
And how would it be different for set
?