Dose struts.xml has any limit for configuration or dose struts2 has any limit for creating new actions? since I have around 35 actions configured in my struts.xml. when I create new action and used it in my jsp page I evidence that only is alone executing and it does not gets into my action class (which I noticed while debugging) and returned or redirected to the same page (i.e. the page I gave in ).
Dose struts.xml has any limit for configuration or dose struts2 has any limit for
Share
You r question is not clear enough especially the part last few lines. regarding other part of the Question you can have as many actions as you want in your configuration but this is never a good idea because
My suggestion is break up you main configuration file in to small files like you must have different modules to work on different business requests
its always better to work in modular level rather than using a single file which will keep on hard to maintain and debug with time.