From 946e74f539fca79d13b329899c7abae5f12d6dec Mon Sep 17 00:00:00 2001 From: Maximillian Arruda Date: Sat, 10 Jun 2023 03:34:24 -0300 Subject: [PATCH] docs: enhance `@Entity` section Signed-off-by: Maximillian Arruda --- spec/src/main/asciidoc/chapters/api/annotations.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/src/main/asciidoc/chapters/api/annotations.adoc b/spec/src/main/asciidoc/chapters/api/annotations.adoc index a34f0f54c..86a613bf7 100644 --- a/spec/src/main/asciidoc/chapters/api/annotations.adoc +++ b/spec/src/main/asciidoc/chapters/api/annotations.adoc @@ -36,6 +36,7 @@ This annotation maps the class to Jakarta NoSQL. There is a single value attribu public class Person { } ---- +In the case of name customization, it just needs to set the value of the @Entity annotation with the desired name as like below: [source,java] ----