Struts2 Action is not called when more than 4 option given for file uploading -


http status 404 - no result defined action com.strutsproject.action.achievementsaction , result input uploading 

struts2 action not call when more 4 option given file uploading

<div class="form-group">         <label for="email" class="col-sm-5 control-label" style=" text-align: left;">upload photo</label>          <div class="col-sm-7">  		        <input type="file"class="form-control" data-buttonname="btn-primary"  name="fileupload7" >          </div>        </div>        <div class="form-group">         <label for="email" class="col-sm-5 control-label" style=" text-align: left;">upload photo</label>          <div class="col-sm-7">  		        <input type="file"class="form-control" data-buttonname="btn-primary"  name="fileupload7" >          </div>        </div>        <div class="form-group">         <label for="email" class="col-sm-5 control-label" style=" text-align: left;">upload photo</label>          <div class="col-sm-7">  		        <input type="file" class="form-control" data-buttonname="btn-primary"  name="fileupload7" >          </div>        </div>        <div class="form-group">         <label for="email" class="col-sm-5 control-label" style=" text-align: left;">upload photo</label>          <div class="col-sm-7">  		        <input type="file"class="form-control" data-buttonname="btn-primary"  name="fileupload7" >          </div>        </div>        <div class="form-group">         <label for="email" class="col-sm-5 control-label" style=" text-align: left;">upload photo</label>          <div class="col-sm-7">  		        <input type="file"class="form-control" data-buttonname="btn-primary" name="fileupload7" >          </div>        </div>    

i found solution ,i forget include below part in struts.xml file if have used below code not include this(<param name="maximumsize">9097152</param> ) because override below code

<constant name="struts.multipart.maxsize" value="104857600" /> 

Comments