You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2015/11/25 23:15:49 UTC

isis git commit: ISIS-1262: further update to docs

Repository: isis
Updated Branches:
  refs/heads/master 302da22ce -> b37c49ad9


ISIS-1262: further update to docs


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/b37c49ad
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/b37c49ad
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/b37c49ad

Branch: refs/heads/master
Commit: b37c49ad939bd48c899fb7b5f4a5cfe3c183416e
Parents: 302da22
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Wed Nov 25 22:15:44 2015 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Wed Nov 25 22:15:44 2015 +0000

----------------------------------------------------------------------
 .../_ug_more-advanced_overriding-jdo-annotations.adoc       | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/b37c49ad/adocs/documentation/src/main/asciidoc/guides/_ug_more-advanced_overriding-jdo-annotations.adoc
----------------------------------------------------------------------
diff --git a/adocs/documentation/src/main/asciidoc/guides/_ug_more-advanced_overriding-jdo-annotations.adoc b/adocs/documentation/src/main/asciidoc/guides/_ug_more-advanced_overriding-jdo-annotations.adoc
index 6b19fa9..1d0c9b7 100644
--- a/adocs/documentation/src/main/asciidoc/guides/_ug_more-advanced_overriding-jdo-annotations.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/_ug_more-advanced_overriding-jdo-annotations.adoc
@@ -41,6 +41,13 @@ Suppose though that for whatever reason we didn't want to use a custom schema bu
 
 This file should be placed can be placed in `src/main/java/META-INF` within your application's `dom` module.
 
+[TIP]
+====
+(As of `1.11.0-SNAPSHOT`) you can use a mixin action on xref:rg.adoc#_rg_classes_mixins_Persistable[`Persistable`] mixin
+to download the JDO class metadata in XML form.
+====
+
+
 [NOTE]
 ====
 * The same approach should work for any other JDO metadata, but some experimentation might be required.+
@@ -50,6 +57,8 @@ For example, in writing up the above example we found that writing `schema=&quot
 * Forcing the schema to "PUBLIC" (as in the above example) works, but it isn't ideal because the name "PUBLIC" is not vendor-neutral (it works for HSQLDB, but MS SQL Server uses "dbo" as its default).
 
 * As of 1.9.0 Apache Isis will automatically (attempt) to create the owning schema for a given table if it does not exist. This behaviour can be customized, as described in the section on xref:_ug_more-advanced_decoupling_db-schemas[using modules].
+
+* You may need to override the entire class metadata rather than individual elements; the mixin (`1.11.0-SNAPSHOT`) mentioned above can help here.
 ====