You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by da...@apache.org on 2007/02/06 21:14:06 UTC

svn commit: r504274 - in /cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl: pom.xml src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml

Author: danielf
Date: Tue Feb  6 12:14:05 2007
New Revision: 504274

URL: http://svn.apache.org/viewvc?view=rev&rev=504274
Log:
Turning scoped proxies of temporarily as there are problems with CGLIB in some environments. In the CVS version of Spring AOP the scoped proxies can be configured to work with ordinary Java interfaced proxies without CGLIB also.

Modified:
    cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/pom.xml
    cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml

Modified: cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/pom.xml?view=diff&rev=504274&r1=504273&r2=504274
==============================================================================
--- cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/pom.xml (original)
+++ cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/pom.xml Tue Feb  6 12:14:05 2007
@@ -87,11 +87,6 @@
       <artifactId>spring-web</artifactId>
       <version>2.0.2</version>
     </dependency>             
-    <dependency>
-      <groupId>cglib</groupId>
-      <artifactId>cglib</artifactId>
-      <version>2.1_3</version>
-    </dependency>             
 
     <dependency>
       <groupId>javax.servlet</groupId>

Modified: cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml?view=diff&rev=504274&r1=504273&r2=504274
==============================================================================
--- cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml (original)
+++ cocoon/trunk/core/cocoon-servlet-service/cocoon-servlet-service-impl/src/main/resources/META-INF/cocoon/spring/cocoon-callstack-environment.xml Tue Feb  6 12:14:05 2007
@@ -37,21 +37,21 @@
     <bean name="javax.servlet.http.HttpServletRequest/callstack"
           class="org.apache.cocoon.callstack.environment.HttpServletRequestFactoryBean"
           scope="call">
-        <aop:scoped-proxy/>
+        <!--aop:scoped-proxy proxy-target-class="false"/-->
     </bean>
 
     <!-- The response object of the current call frame -->
     <bean name="javax.servlet.http.HttpServletResponse/callstack"
           class="org.apache.cocoon.callstack.environment.HttpServletResponseFactoryBean"
           scope="call">
-        <aop:scoped-proxy/>
+        <!--aop:scoped-proxy proxy-target-class="false"/-->
     </bean>
 
     <!-- The context object of the current call frame -->
     <bean name="javax.servlet.ServletContext/callstack"
           class="org.apache.cocoon.callstack.environment.ServletContextFactoryBean"
           scope="call">
-        <aop:scoped-proxy/>
+        <!--aop:scoped-proxy proxy-target-class="false"/-->
     </bean>
 
 </beans>