Map a struts2 action result to a controller instead of a jsp
        Posted  
        
            by Jim
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jim
        
        
        
        Published on 2010-05-03T19:07:27Z
        Indexed on 
            2010/05/13
            14:14 UTC
        
        
        Read the original article
        Hit count: 240
        
Hello,
I'm working on on a site built using struts2. The vast majority of our targets generate xml, so mapping the result to a jsp page makes sense. A couple of our targets actually generated binaries. I'm wondering if there is a convenient way to say that the result should come from a servlet/controller instead of a jsp.
Obviously this could be done by modifying the web.xml so the struts filter doesn't apply to those targets and mapping those targets as servlets, but this is non-ideal. Currently, the struts filter applies to the entire site, and we would like to keep it that way.
Ideas?
Thanks!
© Stack Overflow or respective owner