@SuppressWarnings("unchecked")
public List<Object[]> getContentListByAppTitle(String username) {
username = username.trim();
List<Object[]> lists = getJpaTemplate()
.find("select SUM(royaltyPrice),c.vendorId,c.appleId from Content c where c.appTitle='"
+ username + "' group by c.appleId");
return lists;
}
这是今天在写wicket的“view report”功能的时候所写的重要代码。
这段代码起初我是用public List<Content>getContentListByAppTitle(String username) {}的方式,但是后来想了下明明就结果集就不是Content的对象,为什么要用List<Content>呢? 如果该成这样的话就可以用:select c from Content c ....; 这样就可以用。现在必须要用SUM(royaltyPrice),所以不能用了。然后想了下就只能用数组了,
所以最后改成这样了List<Object[]>了。
在control层用这个dao层的这个方法的时候返回的是List<Object>类型的。所以这样来用:
private List<Object[]> contentList;
contentList = reportService.getContentListByAppTitle(sessionUser.getUsername());
if(contentList.size()>0){
royaltyPrice = ((Double)contentList.get(0)[0]).floatValue();
vendorId = Short.parseShort(contentList.get(0)[1].toString());
appleId = Integer.parseInt(contentList.get(0)[2].toString());
}
因为我的list里面就只有一条记录,所以用了get(0)来获取这条记录,但是这条记录本身是个Object[]对象数组,所以又用到了get(0)[0]和get(0)[1]和get(0)[2],这样来获取每个记录。