resources servlet is now in spring-js

This commit is contained in:
Scott Andrews
2008-04-10 22:22:57 +00:00
parent 5e845b850f
commit 722a832958
3 changed files with 5 additions and 4 deletions

View File

@@ -27,12 +27,13 @@
<dependency org="org.aopalliance" name="aopalliance" rev="1.0" conf="compile->default"/>
<dependency org="org.apache" name="commons-codec" rev="1.3" conf="compile->default"/>
<dependency org="org.apache.commons" name="commons-collections" rev="3.2" conf="compile->default" />
<dependency org="org.springframework.webflow" name="spring-faces" rev="latest.integration" conf="compile->compile"/>
<dependency org="org.springframework.webflow" name="spring-js" rev="latest.integration" conf="compile->compile"/>
<dependency org="org.springframework.webflow" name="spring-webflow" rev="latest.integration" conf="compile->compile"/>
<dependency org="org.springframework" name="spring-aop" rev="2.5.3" conf="compile->default"/>
<dependency org="org.springframework" name="spring-orm" rev="2.5.3" conf="compile->default"/>
<dependency org="org.springframework" name="spring-jdbc" rev="2.5.3" conf="compile->default"/>
<dependency org="org.springframework" name="spring-tx" rev="2.5.3" conf="compile->default"/>
<dependency org="org.springframework" name="spring-webmvc-portlet" rev="2.5.3" conf="compile->default"/>
<dependency org="javax.persistence" name="persistence-api" rev="1.0.0" conf="compile->default"/>
<dependency org="org.jboss.seam" name="jboss-el" rev="2.0.0.GA" conf="compile->default"/>
<dependency org="org.hibernate" name="hibernate" rev="3.2.5.ga" conf="compile->default"/>

View File

@@ -6,6 +6,6 @@ log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - <%m>%n
# Enable web flow logging
log4j.category.org.springframework.webflow=DEBUG
log4j.category.org.springframework.faces=DEBUG
log4j.category.org.springframework.js=DEBUG
log4j.category.org.springframework.binding=DEBUG
log4j.category.org.springframework.transaction=DEBUG

View File

@@ -24,10 +24,10 @@
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Serves static resource content from .jar files such as spring-faces.jar -->
<!-- Serves static resource content from .jar files such as spring-js.jar -->
<servlet>
<servlet-name>Resources Servlet</servlet-name>
<servlet-class>org.springframework.faces.ui.resource.ResourceServlet</servlet-class>
<servlet-class>org.springframework.js.resource.ResourceServlet</servlet-class>
<load-on-startup>0</load-on-startup>
</servlet>