[jboss-cvs] JBossAS SVN: r106862 - in trunk/resteasy-int: test/async-http-servlet-3.0-test and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jul 19 16:29:07 EDT 2010


Author: bill.burke at jboss.com
Date: 2010-07-19 16:29:06 -0400 (Mon, 19 Jul 2010)
New Revision: 106862

Modified:
   trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyEjbDeployer.java
   trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
   trunk/resteasy-int/test/async-http-servlet-3.0-test/pom.xml
Log:


Modified: trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyEjbDeployer.java
===================================================================
--- trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyEjbDeployer.java	2010-07-19 20:28:21 UTC (rev 106861)
+++ trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyEjbDeployer.java	2010-07-19 20:29:06 UTC (rev 106862)
@@ -77,7 +77,7 @@
          }
          if (!GetRestful.isRootResource(ejbClass)) continue;
          String jndiName = getLocalJndiName(ejb, ejbClass);
-         log.info("Found JAX-RS EJB: " + ejbClass.getName() + " local jndi name: " + jndiName);
+         log.debug("Found JAX-RS EJB: " + ejbClass.getName() + " local jndi name: " + jndiName);
          if (buf == null)
          {
             buf = new StringBuffer();
@@ -95,7 +95,7 @@
       {
          resteasy.createDispatcher();
          String paramValue = buf.toString();
-         log.info("*** Adding RESTEasy JNDi Component Resources: " + paramValue);
+         log.debug("*** Adding RESTEasy JNDi Component Resources: " + paramValue);
          ResteasyIntegrationDeployer.setContextParameter(webdata, ResteasyContextParameters.RESTEASY_JNDI_COMPONENT_RESOURCES, paramValue);
       }
    }

Modified: trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
===================================================================
--- trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java	2010-07-19 20:28:21 UTC (rev 106861)
+++ trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java	2010-07-19 20:29:06 UTC (rev 106862)
@@ -108,7 +108,7 @@
             }
          }
          String resources = buf.toString();
-         log.info("*** Adding JAX-RS resource classes: " + resources);
+         log.debug("*** Adding JAX-RS resource classes: " + resources);
          setContextParameter(webdata, ResteasyContextParameters.RESTEASY_RESOURCES, resources);
       }
       if (!resteasy.getProviders().isEmpty())
@@ -127,7 +127,7 @@
             }
          }
          String providers = buf.toString();
-         log.info("*** Adding JAX-RS provider classes: " + providers);
+         log.debug("*** Adding JAX-RS provider classes: " + providers);
          setContextParameter(webdata, ResteasyContextParameters.RESTEASY_PROVIDERS, providers);
       }
 
@@ -148,7 +148,7 @@
          // don't set this param if CDI    is not in classpath
          if (((VFSDeploymentUnit) du).getMetaDataFile("beans.xml") != null)
          {
-            log.info("***** Found CDI, adding injector factory class");
+            log.debug("***** Found CDI, adding injector factory class");
             setContextParameter(webdata, "resteasy.injector.factory", CDI_INJECTOR_FACTORY_CLASS);
          }
       }

Modified: trunk/resteasy-int/test/async-http-servlet-3.0-test/pom.xml
===================================================================
--- trunk/resteasy-int/test/async-http-servlet-3.0-test/pom.xml	2010-07-19 20:28:21 UTC (rev 106861)
+++ trunk/resteasy-int/test/async-http-servlet-3.0-test/pom.xml	2010-07-19 20:29:06 UTC (rev 106862)
@@ -3,7 +3,7 @@
     <parent>
         <groupId>org.jboss.resteasy</groupId>
         <artifactId>resteasy-jaxrs-all</artifactId>
-        <version>2.0-rc1-SNAPSHOT</version>
+        <version>2.0.0.GA</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>async-http-servlet-3.0-test</artifactId>



More information about the jboss-cvs-commits mailing list