В моем Struts-config.xml
файле
<action path="/getTareWeight"
type="com.astrazeneca.usbod.scale.actions.GetTareByBarcodeAction"
name ="getTareByBarcodeForm"
scope="request"
validate="true"
input="/jsp/getTareByBarcode.jsp">
<forward name="success" path="/jsp/tareWeightResult.jsp" />
</action>
В GetTareByBarcodeForm
, который расширяет ActionForm
, существуют следующие методы получения и установки,
public String getBarcodeString() {
return (this.barcodeString);
}
public void setBarcodeString(String barcodeString) {
this.barcodeString = barcodeString;
}
public String getResult() {
return (this.result);
}
public void setResult(String result) {
this.result = result;
}
В файле GetTareByBarcodeAction.java
,
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException{
String target = new String("success");
double tareWeight=0;
String tw = new String("");
GetTareByBarcodeForm gForm = (GetTareByBarcodeForm)form;
String errorString;
StringTokenizer t = new StringTokenizer(gForm.getBarcodeString(),
" \t\n\r\f:,;.");
List barcodeList = new ArrayList();
List tareWeightList = new ArrayList();
while (t.hasMoreTokens()) {
barcodeList.add(t.nextToken().trim());
}
int size = barcodeList.size();
VesselProcessor vproc = VesselProcessor.getInstance();
for(int i=0;i<size;i++)
{
tareWeight = vproc.checkTares((String) barcodeList.get(i));
tw=Double.toString(tareWeight);
tareWeightList.add(barcodeList.get(i));
tareWeightList.add(tw);
String temp = barcodeList.get(i).toString();
gForm.setBarcodeString(temp);
gForm.setResult(tw);
}
request.setAttribute("TAREWEIGHT", tareWeightList);
return (mapping.findForward(target));
}
В файле tareWeightResult.jsp
я печатаю значения атрибута TAREWEIGHT в табличном формате.
<logic:present name="TAREWEIGHT">
<logic:iterate id="result" name="TAREWEIGHT">
<tr>
<td>
<bean:write name="result" property="barcodeString"/>
</td>
<td>
<bean:write name="result" property="result"/>
</td>
</tr>
</logic:iterate>
</logic:present>
Когда я попытался запустить эту функцию после ее развертывания на сервере weblogic, в журнале произошла ошибка ниже.
javax.servlet.jsp.JspException: No getter method for property barcodeString of bean result
at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:968)
at org.apache.struts.taglib.bean.WriteTag.doStartTag(WriteTag.java:286)
at jsp_servlet._jsp.__tareweightresult._jsp__tag2(__tareweightresult.java:237)
at jsp_servlet._jsp.__tareweightresult._jspService(__tareweightresult.java:174)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
Может кто-нибудь сообщить мне, где я ошибся в этом сценарии?