運用hql語句查詢實體類指定字段自動封裝成實體bean

在實體類中添加指定字段的構造方法 public class User { public User(String id, String name) { super(); this.id= id; this.name= name; } }在DAO層用hql語句查詢 String hql = "Select new User(id, name) from User where nam
相關文章
相關標籤/搜索