• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Struts2 not able to override default interceptor stack

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I have a struts2 application, where in I do not want the file upload interceptor that is part of the default stack to run. I have tried doing this in multiple ways but looks like it is not getting disabled. Here is my struts.xml. Can someone please explain how to override the default interceptor stack so that I can remove/disable fileupload that is done by framework.

(I do understand that framework provides the feature for convenience but my situation is such that I need to ignore framework fileupload.)

I have set "struts.multipart.maxSize" = 0 so that even if FileUploadInterceptor is being called, it will not upload the file and I see an error in the log file for max file size exceeded. But my question is this constant should not be used at all. FileUploadInterceptor should not be called in the stack as I have removed it.


Thanks.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello:
Ok for me.

<struts>
....
   <constant name="overrideExcludedPatterns" value="autitoazul"/>
...
</struts>


Shruti Verma wrote:Hello,

I have a struts2 application, where in I do not want the file upload interceptor that is part of the default stack to run. I have tried doing this in multiple ways but looks like it is not getting disabled. Here is my struts.xml. Can someone please explain how to override the default interceptor stack so that I can remove/disable fileupload that is done by framework.

(I do understand that framework provides the feature for convenience but my situation is such that I need to ignore framework fileupload.)

I have set "struts.multipart.maxSize" = 0 so that even if FileUploadInterceptor is being called, it will not upload the file and I see an error in the log file for max file size exceeded. But my question is this constant should not be used at all. FileUploadInterceptor should not be called in the stack as I have removed it.


Thanks.

 
Can you smell this for me? I think this tiny ad smells like blueberry pie!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic