This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch ISIS-3183 in repository https://gitbox.apache.org/repos/asf/isis.git
commit 0ca0400660a5d7edeea891254dca08fa1300f04f Author: Dan Haywood <[email protected]> AuthorDate: Fri Aug 26 13:44:15 2022 +0100 ISIS-3161 : trivial update to docs (changes also made to example apps). --- persistence/jpa/adoc/modules/ROOT/pages/weaving.adoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/persistence/jpa/adoc/modules/ROOT/pages/weaving.adoc b/persistence/jpa/adoc/modules/ROOT/pages/weaving.adoc index 62edc90419..b65d86d6c8 100644 --- a/persistence/jpa/adoc/modules/ROOT/pages/weaving.adoc +++ b/persistence/jpa/adoc/modules/ROOT/pages/weaving.adoc @@ -6,12 +6,13 @@ A responsibility of all ORMs is lazy loading of related objects (so as not to load all the data in one go), and tracking of objects as they are modified (to flush back to the database). With JPA, this is typically done dynamically at runtime, using a Java agent. -The xref:docs:starters:simpleapp.adoc[SimpleApp] and xref:docs:starters:helloworld.adoc[HelloWorld] starter apps demonstrate this, bundling the `spring-instrument-5.3.5.jar` file. +The xref:docs:starters:simpleapp.adoc[SimpleApp] and xref:docs:starters:helloworld.adoc[HelloWorld] starter apps demonstrate this, describing how to obtain the required `spring-instrument.jar` file. + To run, use: [source,bash] ---- --javaagent:lib/spring-instrument-5.3.5.jar +-javaagent:lib/spring-instrument.jar ---- -as a JVM argument (where the system properties also are located.) +as a JVM option.
