I have serveral end states and they all do the same thing.
My flow executes an end-state with a externalRedirect and the back button is pressed. I get the following warning message.
No mapping for [/WEB-INF/views/externalRedirect:/contactUs.action]
the flow mapping is.
Code:
<bean id="flowController" name="/contactUs.action"
class="org.springframework.webflow.executor.mvc.FlowController">
<property name="flowExecutor" ref="flowExecutor" />
<property name="defaultFlowId" value="contactUsFlow" />
</bean>
the end-state is this.
Code:
<end-state id="thankyou"
view="externalRedirect:/contactus/thankyouContactUs.action" />