[jboss-cvs] JBossAS SVN: r70268 - projects/aop/trunk/aop/docs/reference/reference/en/modules.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 29 09:15:26 EST 2008


Author: stalep
Date: 2008-02-29 09:15:25 -0500 (Fri, 29 Feb 2008)
New Revision: 70268

Modified:
   projects/aop/trunk/aop/docs/reference/reference/en/modules/running.xml
Log:
[JBAOP-532] Added docu on how to use jboss.aop.include.annotations


Modified: projects/aop/trunk/aop/docs/reference/reference/en/modules/running.xml
===================================================================
--- projects/aop/trunk/aop/docs/reference/reference/en/modules/running.xml	2008-02-29 13:54:47 UTC (rev 70267)
+++ projects/aop/trunk/aop/docs/reference/reference/en/modules/running.xml	2008-02-29 14:15:25 UTC (rev 70268)
@@ -339,6 +339,26 @@
                </listitem>
             </varlistentry>
             <varlistentry>
+               <term>Include ignored annotations</term>
+               <listitem>
+                  <para>
+                     To increase the startuptime of JBoss AOP all invisible annotations (invisible annotations are all annotations that is not
+                     annotated with @Retention(RetentionPolicy.RUNTIME)). are ignored by default.
+                     To include them use the system property <literal>jboss.aop.invisible.annotations</literal> too add packages that will be
+                     included or add "*" to include all.
+                  </para>
+                    <programlisting>
+                      java -Djboss.aop.include.annotations=com.foo.bar,org.my.company
+                    </programlisting>
+                  <para>
+                    To include all:
+                  </para>
+                    <programlisting>
+                      java -Djboss.aop.include.annotations=*
+                    </programlisting>
+               </listitem>
+            </varlistentry>
+            <varlistentry>
                <term>Turn off optimizations</term>
                <listitem>
                   <para>




More information about the jboss-cvs-commits mailing list