Updating to Spring 2.5.5 causes a javax.servlet.UnavailableException: org.springframework.web.struts
        Posted  
        
            by Averroes
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Averroes
        
        
        
        Published on 2010-03-19T09:28:56Z
        Indexed on 
            2010/03/19
            9:31 UTC
        
        
        Read the original article
        Hit count: 381
        
I have been told to update some application from Spring 2.0.8 to Spring 2.5.5. This application is using Struts 1.2.7. Once I change the Spring.jar I get the following exception while loading in JBoss 4.0.5:
10:14:57,579 ERROR [[/PortalRRHH]] Servlet /PortalRRHH threw load() exception
javax.servlet.UnavailableException: org.springframework.web.struts.DelegatingTilesRequestProcessor
This is defined in the struts-config.xml this way:
<controller locale="true">
  <set-property property="processorClass" value="org.springframework.web.struts.DelegatingTilesRequestProcessor"/>
 </controller>
I have no clue of what is happening since it works with the old version of Spring and the DelegatingTilesRequestProcessor is still available in Spring 2.5.5. I have no previous experience with Struts so if you need anything else to figure what the problem is please ask and I will update the question.
Thanks.
© Stack Overflow or respective owner