Spring frame replacement for FlowAction

I recently inherited a very old code base (written in 2006) that uses the spring structure. Right now, the goal is to get it semi-functional, which I almost did. However, there is some code that I cannot fix that uses the "FlowAction" class from "org.springframework.webflow.executor.struts.FlowAction". It existed in spring -webflow-1.0.6.jar, but no longer exists in 2.4.2.

Can someone give me any tips on how to fix the following code using the more recent spring frame code?

<action path="/secure/FRONT/enrollAction" name="webflowActionForm" scope="request" type="org.springframework.webflow.executor.struts.FlowAction" /> 

Please keep in mind that this is an attempt to get this very old code to work, so telling me that this is not possible is good, but please indicate why (I am not a spring expert). I googled and searched spring code to no avail, but I hope this is as simple as using another library. Thanks for any input!

EDIT

Based on the first comment below, struts are no longer supported. I offer an award for those who know how to update this code. I assume that an alternative exists or has been suggested by the spring framework for code using old libraries. If anyone knows what this is, I would really appreciate it. I just need help with how I will update the specific block of code above, and I am happy to provide any necessary information.

+6
source share
1 answer
 FlowHandlerMapping FlowHandler FlowHandlerAdapter FlowExecutor FlowDefinition FlowRegistry 

we can use the following classes to get the functionality of bindings to your code

0
source

All Articles