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
Add the following diagnostics related to MapKey:
Add a diagnostic to validate that the @MapKeyClass and @MapKey annotations are not used on the same field or property. https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#mapkey-annotation
@MapKeyClass
@MapKey
Add a diagnostic to validate that if more than one @MapKeyJoinColumn annotation is applied to a field or property, both the name and the referencedColumnName elements must be specified in each such@MapKeyJoinColumn annotation. https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#a15450
@MapKeyJoinColumn
name
referencedColumnName
The text was updated successfully, but these errors were encountered:
AnkushSharma2698
Successfully merging a pull request may close this issue.
Add the following diagnostics related to MapKey:
Add a diagnostic to validate that the
@MapKeyClass
and@MapKey
annotations are not used on the same field or property.https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#mapkey-annotation
Add a diagnostic to validate that if more than one
@MapKeyJoinColumn
annotation is applied to a field or property, both thename
and thereferencedColumnName
elements must be specified in each such@MapKeyJoinColumn
annotation.https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#a15450
The text was updated successfully, but these errors were encountered: