[seam-commits] Seam SVN: r14921 - branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Jun 15 06:15:40 EDT 2012


Author: manaRH
Date: 2012-06-15 06:15:39 -0400 (Fri, 15 Jun 2012)
New Revision: 14921

Modified:
   branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/applicationContext.xml
   branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/components.xml
Log:
bz #830217 fixed schema declaration for spring war

Modified: branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/applicationContext.xml
===================================================================
--- branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/applicationContext.xml	2012-06-15 09:21:03 UTC (rev 14920)
+++ branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/applicationContext.xml	2012-06-15 10:15:39 UTC (rev 14921)
@@ -7,7 +7,7 @@
                            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
                            http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.0.xsd
                            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
-                           http://jboss.org/schema/seam/spring-seam http://jboss.org/schema/seam/spring-seam-2.3.xsd
+                           http://jboss.org/schema/seam/spring-seam http://www.jboss.org/schema/seam/spring-seam-2.3.xsd
                            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"
 	default-lazy-init="true">
 

Modified: branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/components.xml
===================================================================
--- branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/components.xml	2012-06-15 09:21:03 UTC (rev 14920)
+++ branches/enterprise/WFK-2_0/examples-ee6/spring/spring-web/src/main/webapp/WEB-INF/components.xml	2012-06-15 10:15:39 UTC (rev 14921)
@@ -6,10 +6,10 @@
             xmlns:async="http://jboss.org/schema/seam/async"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://jboss.org/schema/seam/core http://jboss.org/schema/seam/core-2.3.xsd 
-                                http://jboss.org/schema/seam/persistence http://jboss.org/schema/seam/persistence-2.3.xsd
-                                http://jboss.org/schema/seam/components http://jboss.org/schema/seam/components-2.3.xsd
+                                http://jboss.org/schema/seam/persistence http://jboss.org/schema/seam/persistence-2.3.xsd                                
                                 http://jboss.org/schema/seam/spring http://jboss.org/schema/seam/spring-2.3.xsd
-                                http://jboss.org/schema/seam/async http://jboss.org/schema/seam/async-2.3.xsd">
+                                http://jboss.org/schema/seam/async http://jboss.org/schema/seam/async-2.3.xsd
+                                http://jboss.org/schema/seam/components http://jboss.org/schema/seam/components-2.3.xsd">
 
 
     <core:manager conversation-timeout="120000" 
@@ -31,7 +31,7 @@
 	 <component name="threadPoolDispatcher" class="org.jboss.seam.async.ThreadPoolDispatcher" />
     
     <!-- Install the SpringDispatcher as default -->
-    <spring:spring-task-executor-dispatcher schedule-dispatcher="#{threadPoolDispatcher}" task-executor="#{springThreadPoolTaskExecutor}"/>
+    <spring:task-executor-dispatcher schedule-dispatcher="#{threadPoolDispatcher}" task-executor="#{springThreadPoolTaskExecutor}"/>
     
     <spring:spring-transaction platform-transaction-manager="#{transactionManager}"/>
     



More information about the seam-commits mailing list