snap-admin icon indicating copy to clipboard operation
snap-admin copied to clipboard

please suppport @jakarta.persistence.Transient attribute

Open Hypnos3 opened this issue 1 year ago • 0 comments

Please ignore fields with attribute "@jakarta.persistence.Transient", because these are not database relevant.

Currently such fields are throw an error like:

  • The class contains the field template of type WorkItemTemplate, which is not supported
  • The class contains the field state of type WorkItemState, which is not supported

Is the bug at startup before you perform any action? Yes

@Entity code /** the template of this workitem */ @Nullable @NotAudited @jakarta.persistence.Transient @JsonProperty(access = JsonProperty.Access.READ_ONLY) private WorkItemTemplate template;

Hypnos3 avatar Apr 23 '24 22:04 Hypnos3