Dao层代码:
 public List find(String hql, Object... values) {
Assert.hasText(hql);
return getHibernateTemplate().find(hql, values);
 }为什么运行完后会有update执行?