ServletFileUpload.parseRequest()怎么得不到请求内容

ServletFileUpload.parseRequest()怎么得不到请求内容?

答:

struts的拦截器机制RequestProccessor自己处理了文件上传,
如果是struts1,去掉formbean中的file对应属性,
如果是struts2,把

  struts2
  org.apache.struts2.dispatcher.FilterDispatcher


  struts2
  /*

里面的/*改成/*.action然后用普通的servlet代替action做上传处理。

你可能感兴趣的:(J2EE)