记一次 hibernate 里get和load查询

当库里没有要查的数据时:使用 session.load()会报如下错误:

org.hibernate.ObjectNotFoundException:No row with the given identifier exists:

使用session.get()时会报空指针异常:

java.lang.NullPointerException

原文地址:https://www.cnblogs.com/andyboy/p/3134010.html