You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2011/03/22 17:55:12 UTC

svn commit: r1084250 - /tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml

Author: rfeng
Date: Tue Mar 22 16:55:12 2011
New Revision: 1084250

URL: http://svn.apache.org/viewvc?rev=1084250&view=rev
Log:
Use classpath to find Spring config

Modified:
    tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml

Modified: tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml?rev=1084250&r1=1084249&r2=1084250&view=diff
==============================================================================
--- tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml (original)
+++ tuscany/sandbox/rfeng/sca-java-2.x/implementation-spring/helloworld-spring-webapp/src/main/webapp/WEB-INF/web.xml Tue Mar 22 16:55:12 2011
@@ -25,8 +25,8 @@
     <context-param>
         <param-name>contextConfigLocation</param-name>
         <param-value>
-        /WEB-INF/classes/helloworld-context.xml
-        /WEB-INF/classes/org/apache/tuscany/sca/implementation/spring/webapp/spring-webapp-context.xml
+        classpath:helloworld-context.xml
+        classpath:org/apache/tuscany/sca/implementation/spring/webapp/spring-webapp-context.xml
         </param-value>
     </context-param>