Jim Reynolds wrote:
Hello,
Currently in my struts-config.xml file I have the following controller entry.
<controller inputForward="false" contentType="text/html;charset=UTF-8"
debug="3" locale="true" nocache="true"
processorClass="org.apache.struts.tiles.TilesRequestProcessor"/>
All is running, but now I have the need to extend the
RequestProcessor. So I created a class
'com.xxx.xxx.myExtendedRequestProcessor".
which means now my controller should inclue that in the
"processorClass=" for its attribute value.
So my question is, how can you use two processorClass entries? Can this be done?
Regards
No, there is only one request processor. Why do you want two? What you
should be doing is making your custom request processor a sub-class of
TilesRequestProcessor and, in any methods you override, calling super()
as appropriate.
L.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]