日期:2014-05-18 浏览次数:20721 次
public User finById(String id) throws Exception{
String hql = "select st from "+User.class.getName()+" st where st.id = '"+id+"' ";
List<User> user= this.findByHql(hql).list();
if(user!= null && user.size()>0){
return ???; 这里返回什么,才能在action页面中调用对象?
}
return null;
}
if(user!= null && user.size() > 0){
return user.get(0);