You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by jo...@apache.org on 2022/06/23 16:26:17 UTC

[isis] 01/02: ISIS-3073 JPA is supported now

This is an automated email from the ASF dual-hosted git repository.

joergrade pushed a commit to branch ISIS-3073
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 47ac1f5df83530c594cff3a3b8a09c9fb7c1cbf0
Author: Jörg Rade <jo...@kuehne-nagel.com>
AuthorDate: Thu Jun 23 13:43:06 2022 +0200

    ISIS-3073 JPA is supported now
---
 .../userguide/modules/fun/pages/concepts-patterns/metamodel.adoc        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/antora/components/userguide/modules/fun/pages/concepts-patterns/metamodel.adoc b/antora/components/userguide/modules/fun/pages/concepts-patterns/metamodel.adoc
index babc496d8a..e4559ce768 100644
--- a/antora/components/userguide/modules/fun/pages/concepts-patterns/metamodel.adoc
+++ b/antora/components/userguide/modules/fun/pages/concepts-patterns/metamodel.adoc
@@ -17,7 +17,7 @@ Most of the annotations recognized by the framework are defined by the Apache Is
 For example the `@Title` annotation -- which identifies how the framework should derive a human-readable label for each rendered domain object -- is part of the `org.apache.isis.applib.annotations` package.
 However the framework also recognizes certain other JEE annotations such as `@javax.inject.Inject` (used for dependency injection).
 
-The framework integrates an ORM for persistence, specifically DataNucleus and the JDO API (there is a roadmap to also support JPA with other persistence implementations).
+The framework integrates an ORM for persistence, specifically DataNucleus and the JDO API and since version 2.0.0, JPA (Eclipselink) is supported as well.
 Both JDO and JPA can map to both relational databases and also to various NoSQL objectstores such as MongoDB or Neo4J.
 Apache Isis recognizes a number of these persistence-specific annotations, for example `@javax.jdo.annotations.Column(allowsNull=...)`.