> So, I have actioclass A and I want to call action class B witch needs
> actionform C.
> I will use the mappings to chain the response from B to my first
> action class A.
http://wiki.apache.org/struts/ForwardingWithDifferentParameter
You shouldn't be calling an Action from an Action.
Action chaining is not recommended and is considered
poor practice. Action classes are an implementation of
Command pattern and as such should delegate to reusable
business components.
I would refactor your business logic embedded in Action classes
You shouldn't be calling an Action from an Action.
Action chaining is not recommended and is considered
poor practice. Action classes are an implementation of
Command pattern and as such should delegate to reusable
business components.
I would refactor your business logic embedded in Action class
3 matches
Mail list logo