|
From: <tri...@us...> - 2007-11-12 21:34:09
|
Revision: 148
http://equanda.svn.sourceforge.net/equanda/?rev=148&view=rev
Author: triathlon98
Date: 2007-11-12 13:34:04 -0800 (Mon, 12 Nov 2007)
Log Message:
-----------
improve docs
Modified Paths:
--------------
trunk/src/site/site.xml
trunk/src/site/wiki/config.wiki
Modified: trunk/src/site/site.xml
===================================================================
--- trunk/src/site/site.xml 2007-11-12 20:54:08 UTC (rev 147)
+++ trunk/src/site/site.xml 2007-11-12 21:34:04 UTC (rev 148)
@@ -24,6 +24,7 @@
<item name="Persistence" href="persistence.html"/>
<item name="Presentation" href="presentation.html"/>
<item name="Using" href="using.html"/>
+ <item name="Configuration" href="config.html"/>
<item name="Developers" href="developers.html"/>
</item>
<item name="Getting Started" href="gettingstarted.html"/>
Modified: trunk/src/site/wiki/config.wiki
===================================================================
--- trunk/src/site/wiki/config.wiki 2007-11-12 20:54:08 UTC (rev 147)
+++ trunk/src/site/wiki/config.wiki 2007-11-12 21:34:04 UTC (rev 148)
@@ -34,8 +34,6 @@
[extra]
security-role=LocalUser,LocalAdmin
-security-role-embedded=LocalUser,LocalAdmin
-security-role-merge-model=LocalUser,LocalAdmin
security-role-remove=LocalUser,LocalAdmin
infrastructure=true
lazylist-cache-capacity=100
@@ -59,21 +57,19 @@
For "config" it specifies the name of the object model definition file, and whether all files should allways be overwritten (default behaviour is to not touch files if there is no change in the object model which affects that file, when the templates themselves have changed you need to generate everything again either by doing a clean before the compile, or by setting "generateAll" to "true").
The "extra" section contains data source location, security information etc.
-- security-role=LocalUser,LocalAdmin
-- security-role-embedded=LocalUser,LocalAdmin
-- security-role-merge-model=LocalUser,LocalAdmin
-- security-role-remove=LocalUser,LocalAdmin
+- security-role : appserver roles which are allowed access to the table by default.
+- security-role-remove : appserver security roles which are allowed to delete records by default.
- infrastructure : when true, the infrastructure tables are also included in the object model.
-- lazylist-cache-capacity=100
-- lazylist-cache-expiration=3000
-- fetch-batch-size=100
-- link-fetch-batch-size=100
-- multiple-fetch-batch-size=100
+- lazylist-cache-capacity : number of records to cache (or fetch size) for lazy lists.
+- lazylist-cache-expiration : lazy list cache expiration time in milliseconds.
+- fetch-batch-size : Hibernate fetch batch size for tables.
+- link-fetch-batch-size : Hibernate fetch batch size for links.
+- multiple-fetch-batch-size : Hibernate fetch batch size for multiple fields.
- skip-jalopy : when false jalopy is used to reformat the generated java code. Note that this slows down generation time.
- skip-xml-check : when false the correctness of generated xml files is verified. This may be useful while modifying template files.
-- security-domain=myapp
-- ejb-package=mypackage.myapp.om
-- default-role=LocalUser
+- security-domain : appserver security domain to use.
+- ejb-package : base package for the persistence layer (same as "package" in the "ejb3" section).
+- default-role : role which is assigned to users which have no role assigned.
h2. Maven plugin configuration
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|