我能夠從我的數據庫(我正在使用ORM即Hibernate)獲取列表。在選擇框中填充列表中的錯誤
列表類型是我的Bean類。
不過,我面臨的問題是:
- 填充在選擇框中的是有對象的列表。不是價值。
要求是它應該填充名稱。
動作類別:
package com.action;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;
import org.apache.commons.io.FileUtils;
import org.apache.struts2.interceptor.SessionAware;
import org.springframework.beans.factory.annotation.Autowired;
import com.ing.aosh.service.AoshService;
import com.ing.aosh.vo.EscRprtNameVO;
import com.opensymphony.xwork2.ActionSupport;
public class FileUploadAction extends ActionSupport implements SessionAware{
Logger logger = Logger.getLogger(FileUploadAction.class.getName());
private Map session;
private String slectList;
EscRprtNameVO escNameRprtVo = new EscRprtNameVO();
private File report;
private String reportContentType;
private String reportFileName;
private List escRprtNameList = new ArrayList();
@Autowired
AoshService aoshService;
@Override
public String execute() throws Exception {
escRprtNameList = aoshService.getEscRprtNmNid();
System.out.println("escRprtNameList 2==" + ((EscRprtNameVO) escRprtNameList.get(2)).getEscRprtName());
System.out.println("escRprtNameList 4==" + ((EscRprtNameVO) escRprtNameList.get(4)).getEscRprtName());
session.put("ESCRPTDETAILS", escRprtNameList);
return "success";
}
public AoshService getAoshService() {
return aoshService;
}
public void setAoshService(AoshService aoshService) {
this.aoshService = aoshService;
}
public void setSession(Map session) {
// TODO Auto-generated method stub
this.session = session;
}
public EscRprtNameVO getEscNameRprtVo() {
return escNameRprtVo;
}
public void setEscNameRprtVo(EscRprtNameVO escNameRprtVo) {
this.escNameRprtVo = escNameRprtVo;
}
public String getSlectList() {
return slectList;
}
public void setSlectList(String slectList) {
this.slectList = slectList;
}
public List getEscRprtNameList() {
return escRprtNameList;
}
public void setEscRprtNameList(List escRprtNameList) {
this.escRprtNameList = escRprtNameList;
}
}
JSP PAGE:
<s:set name="esclatnRprtName" value="#session.ESCRPTDETAILS"></s:set>
<td align="left">
<s:if test="#esclatnRprtName != null">
<s:select list="esclatnRprtName" name="slectList"/>
</s:if>
</td>
用於上述JSP代碼它給我選擇對象值的箱
改性JSP PAGE
<s:set name="esclatnRprtName" value="#session.ESCRPTDETAILS"/>
<td align="left">
<s:if test="#esclatnRprtName != null">
<s:select list="esclatnRprtName" name="slectList"
listKey="esclatnRprtName['escNameRprtVo.escId']"
listValue="esclatnRprtName['escNameRprtVo.escRprtName']"/>
</s:if>
</td>
列表本身不填充..
請求幫助或建議
你在哪裏填充了選擇列表? – 2013-03-06 15:09:10
你的變量的命名真的很重要。爲什麼沒有人聲?他們是免費的:& – 2013-03-06 17:36:06