[seam-commits] Seam SVN: r13860 - branches/enterprise/JBPAPP_5_0/doc/Seam_Reference_Guide/en-US.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Oct 14 08:07:59 EDT 2010


Author: jharting
Date: 2010-10-14 08:07:59 -0400 (Thu, 14 Oct 2010)
New Revision: 13860

Modified:
   branches/enterprise/JBPAPP_5_0/doc/Seam_Reference_Guide/en-US/Webservices.xml
Log:
JBPAPP-5243

Modified: branches/enterprise/JBPAPP_5_0/doc/Seam_Reference_Guide/en-US/Webservices.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/doc/Seam_Reference_Guide/en-US/Webservices.xml	2010-10-14 12:04:04 UTC (rev 13859)
+++ branches/enterprise/JBPAPP_5_0/doc/Seam_Reference_Guide/en-US/Webservices.xml	2010-10-14 12:07:59 UTC (rev 13860)
@@ -212,6 +212,14 @@
             other libraries of your application. Also deploy the integration library,
             <filename>jboss-seam-resteasy.jar</filename>.
          </para>
+         
+         <para>
+	         In seam-gen based projects, this can be done by appending <literal>jaxrs-api.jar</literal>, <literal>resteasy-jaxrs.jar</literal>
+	         and <literal>jboss-seam-resteasy.jar</literal> to the <literal>deployed-jars.list</literal> (war deployment) or 
+	         <literal>deployed-jars-ear.list</literal> (ear deployment) file. For a JBDS based project, copy the libraries mentioned 
+	         above to the <literal>EarContent/lib</literal> (ear deployment) or <literal>WebContent/WEB-INF/lib</literal> (war deployment) 
+	         folder and reload the project in the IDE.
+         </para>
 
          <para>
             On startup, all classes annotated <literal>@javax.ws.rs.Path</literal> will be discovered automatically
@@ -474,6 +482,14 @@
 
          <note>
             <para>
+                RESTEasy components do not support hot redeployment. As a result, the components should never 
+                be placed in the <literal>src/hot</literal> folder. The <literal>src/main</literal> folder should
+                be used instead.
+            </para>
+         </note>
+
+         <note>
+            <para>
                Sub-resources as defined in the JAX RS specification, section 3.4.1, can not be Seam component instances
                at this time. Only root resource classes can be registered as Seam components. In other words, do not
                return a Seam component instance from a root resource method.



More information about the seam-commits mailing list