關於JF框架中的空值處理

webheat發表於2010-02-28
JF框架上中的經典用法
public PageIterator getAllUsers(int start, int count) throws Exception {
String GET_ALL_ITEMS_ALLCOUNT = "select count(1) from fd";
String GET_ALL_ITEMS = "select fdid from fd order by fdid desc";
List queryParams=new ArrayList();
return pageIteratorSolverOfUser.getPageIterator(GET_ALL_ITEMS_ALLCOUNT,
GET_ALL_ITEMS, queryParams, start, count);
}
我們因為業務需要,在xxListAction中加了引數呼叫。
public PageIterator getAllUsers(String query,int start, int count) throws Exception
如果有引數正常返回數值時,一切正常,但是如果返回無值的話。頁面出錯。
我們查了查JF使用文件。裡面的方法是使用EvenModel em, em.setError來處理. 然後在頁面<html:errors/>,這個確實在CRUD中工作正常,但是在getAllUsers中應該如何處理呢?我們不知道如何嵌入EventModel這個引數.
謝謝各位回覆. 祝虎年大順.

[該貼被webheat於2010-02-28 17:26修改過]

相關文章