SO でこれに関するすべての質問を読み、公式の Struts 2 ファイル アップロード ドキュメントに注意深く従いましたが、まだ問題があります。アクションはエラーなしで完了しますが、アクション内の 3 つのファイル プロパティが常に null であるため、アップロードされたファイルをキャッチできないようです。fileUploadInterceptor がその仕事をしていないようです。これが私のコードです:
アクション マッピング:
<action name="merchantSaveOrUpdate" class="merchantSaveOrUpdateAction">
<interceptor-ref name="fileUpload">
<param name="allowedTypes">image/jpeg,image/gif,image/png</param>
</interceptor-ref>
<result name="success" type="redirectAction">merchantList</result>
</action>
jsp:
<s:form action="merchantSaveOrUpdate" method="POST" enctype="multipart/form-data">
<label>Merchant Name</label> <input type="text" value="${merchant.name}" name="name"><br />
<label>Merchant Logo</label> <s:file name="logo" /> <br />
<s:submit class="btn submit" />
</s:form>
アクション:
public class MerchantSaveOrUpdateAction extends ActionSupport {
private File logo;
private String logoContentType;
private String logoFileName;
private String name;
public File getLogo () {
return logo;
}
public void setLogo ( File logo ) {
this.logo = logo;
}
public String getLogoContentType () {
return logoContentType;
}
public void setLogoContentType ( String logoContentType ) {
this.logoContentType = logoContentType;
}
public String getLogoFileName () {
return logoFileName;
}
public void setLogoFileName ( String logoFileName ) {
this.logoFileName = logoFileName;
}
public String getName () {
return name;
}
public void setName ( String name ) {
this.name = name;
}
public String execute() throws Exception {
String result = super.execute();
// the problem is here - name is populated, but the 3 logo properties are null
return result;
}
}