Base Maven Dependency:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-webflow</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
This will include this transitive dependency:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-js</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
Which contains the JavaScript resources:
Resource:
META-INF/web-resources/spring/Spring.js
Which you can serve if you configure Spring MVC as specified here:
<mvc:annotation-driven/>
<mvc:resources mapping = "/resources/**"
location = "/, classpath:/META-INF/web-resources/" />
Note that the full resource URL
depends on how your DispatcherServlet
is mapped. In the mvc-booking sample
we've chosen to map it with the
default servlet mapping '/':
<servlet>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
That means the full URL to load
Spring.js is
/myapp/resources/spring/Spring.js. If
your DispatcherServlet was instead
mapped to /main/* then the full URL
would be
/myapp/main/resources/spring/Spring.js.