求救,struts裡logic:iterate的問題!
action裡面的部分:
public ActionForward perform(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response)
throws IOException,ServletException
{
Connection con=null;
try
{
con=pool.getConnection();
AttractionDAO attrationDAO=new AttractionDAO(con);
Collection col=attrationDAO.findAll();
request.setAttribute("attractionList",col);//在這兒
return mapping.findForward("success");
}
catch(SQLException e)
{
e.printStackTrace();
throw new RuntimeException("Unable to get connection.");
}
finally
{
try
{
if(con!=null)
{
con.close();
}
}
catch(SQLException e)
{
throw new RuntimeException(e.getMessage());
}
}
}
頁面呼叫的部分
<logic:iterate id="attraction"
name="attractionList"
scope="request"
type="com.wrox.tourism.entity.Attraction">
<tr>
<td><bean:write name="attraction" property="name"/></td>
<td><bean:write name="attraction" property="description"/></td>
</tr>
</logic:iterate>
就這樣沒有結果輸出(我的)
我在頁面加上try{}catch{}後
在後臺列印出 can't find bean attraction in scope null
為什麼會是scope null呢??????????、
public ActionForward perform(ActionMapping mapping,ActionForm form,
HttpServletRequest request,HttpServletResponse response)
throws IOException,ServletException
{
Connection con=null;
try
{
con=pool.getConnection();
AttractionDAO attrationDAO=new AttractionDAO(con);
Collection col=attrationDAO.findAll();
request.setAttribute("attractionList",col);//在這兒
return mapping.findForward("success");
}
catch(SQLException e)
{
e.printStackTrace();
throw new RuntimeException("Unable to get connection.");
}
finally
{
try
{
if(con!=null)
{
con.close();
}
}
catch(SQLException e)
{
throw new RuntimeException(e.getMessage());
}
}
}
頁面呼叫的部分
<logic:iterate id="attraction"
name="attractionList"
scope="request"
type="com.wrox.tourism.entity.Attraction">
<tr>
<td><bean:write name="attraction" property="name"/></td>
<td><bean:write name="attraction" property="description"/></td>
</tr>
</logic:iterate>
就這樣沒有結果輸出(我的)
我在頁面加上try{}catch{}後
在後臺列印出 can't find bean attraction in scope null
為什麼會是scope null呢??????????、
相關文章
- 關於struts 的logic:iterate的標籤
- hibernate查詢結果Logic:iterate問題
- 使用logic:iterate取確定的那一條資料的問題?
- Jakarta struts程式設計學習:標籤-->logic-->iterate (轉)程式設計
- 請教如何獲取logic:iterate內設定的值
- 求救 關於parallel的問題Parallel
- 請教如何獲取logic:iterate內設定的值(重發)
- 關於Struts的logic:iterator標籤
- 小弟在struts+hibernate的開發中遇到難題。求救!!
- loadModelById的問題,求救啊
- 資料來源問題求救
- 配置資料庫問題?求救資料庫
- struts原始碼的問題原始碼
- Struts Tiles 和 session的問題Session
- 求救:關於讀取excel資料的問題Excel
- struts的validator框架問題?急框架
- Spring+struts 的問題 急!~~Spring
- 在jbuilder中開發ejb出現的問題求救!UI
- [緊急求救]關於動態建立物件的問題物件
- Struts Tiles應用問題
- struts2 namespace問題namespace
- [求助]struts的bean:write的問題,急!Bean
- 請問關於Struts的Indexed屬性的問題Index
- 請教JSF和Struts的問題JS
- struts下session.setAttribute();的問題Session
- 關於struts中html:errors/的問題HTMLError
- 求救―在wls6.1中釋出ejb碰到的問題
- struts 自定義validate 問題
- struts怪問題 高手請進
- Struts中global-forwards問題Forward
- 請教高手 關於STRUTS DATASOURCE的問題
- 關於struts開發時遇到的問題
- struts的多模組應用問題--html:formHTMLORM
- struts入門級問題,線上等!!!!
- [求助]..新手!遇到struts呼叫sessionbean問題?SessionBean
- iterate的巢狀使用巢狀
- 【原創】Struts1.x系列教程(7):Logic標籤庫
- 求救:學習用JAVAMAIL編的郵件系統出問題了!JavaAI