WebFlow and MVC in one time.
Hello.
How can i get the next. I need that the simple www.site.com/test.html is binding to the WEB-INF/views/test.xhtml and www.site.com/portal/test.html is binding to the webflow WEB-INF/flows/. But it's dont work.
Here is my config:
Code:
<
servlet>
<servlet-name>asgePortalDispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>WEB-INF/spring/spring-kernel-web.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>asgePortalDispatcher</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>asgePortalDispatcher</servlet-name>
<url-pattern>/portal/*.html</url-pattern>
</servlet-mapping>