This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch fix/managed-entity
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/fix/managed-entity by this
push:
new 9b508ab3fa test: add example domain class with `@ManagedEntity` in
hibernate7 example
9b508ab3fa is described below
commit 9b508ab3faac254a254435e064b4fe8f1431c9ab
Author: Mattias Reichel <[email protected]>
AuthorDate: Mon Aug 10 13:06:29 2026 +0200
test: add example domain class with `@ManagedEntity` in hibernate7 example
---
.../grails-app/domain/functionaltests/ManagedEntityDomain.groovy | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git
a/grails-test-examples/hibernate7/app1/grails-app/domain/functionaltests/ManagedEntityDomain.groovy
b/grails-test-examples/hibernate7/app1/grails-app/domain/functionaltests/ManagedEntityDomain.groovy
new file mode 100644
index 0000000000..ee639bc701
--- /dev/null
+++
b/grails-test-examples/hibernate7/app1/grails-app/domain/functionaltests/ManagedEntityDomain.groovy
@@ -0,0 +1,9 @@
+package functionaltests
+
+import grails.gorm.hibernate.annotation.ManagedEntity
+
+@ManagedEntity
+class ManagedEntityDomain {
+
+ String name
+}