From bd466045abe5f24ea69ef61158896a1fbbe226fb Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Fri, 29 Mar 2024 10:59:16 -0500 Subject: [PATCH] HHH-17460 - Ongoing JPA 32 work --- migration-guide.adoc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/migration-guide.adoc b/migration-guide.adoc index 62f5f1074a5e..bf2356fb7c3a 100644 --- a/migration-guide.adoc +++ b/migration-guide.adoc @@ -63,6 +63,19 @@ private Employee manager; ---- +[[java-beans]] +== JavaBean Conventions + +Previous versions allowed some, at beast, questionable attribute naming patterns. These are no longer supported. E.g. + +[source,java] +---- +@Basic +String isDefault(); +---- + + + [[cleanup]] == Some Cleanup