Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HibernateTemplate 类具有以下方法
getHibernateTemplate().saveOrUpdateAll(Collection entities)
但为什么它没有唯一的saveAll()方法?像这样
saveAll()
getHibernateTemplate().saveAll(Collection entities)
如果我只想保存集合而不更新它会发生什么?
saveOrUpdateAll(Collection entity) 本身也将服务于 saveAll(Collection entity) 的目的。这可能是原因