We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please ignore fields with attribute "@jakarta.persistence.Transient", because these are not database relevant.
Currently such fields are throw an error like:
template
WorkItemTemplate
state
WorkItemState
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;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please ignore fields with attribute "@jakarta.persistence.Transient", because these are not database relevant.
Currently such fields are throw an error like:
template
of typeWorkItemTemplate
, which is not supportedstate
of typeWorkItemState
, which is not supportedIs 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;
The text was updated successfully, but these errors were encountered: