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.
当我创建一个新实例然后flush()我的 HibernateSession时,这个实例的所有属性是否都标记为脏,包括null那些?
flush()
Session
null
还是只有那些不脏的属性null?
Java 和 DBMS(例如 Mysql)中都没有脏值。默认情况下,在 java 中,所有原始类型都采用指定的零值,所有链接都采用 null 作为值。DBMS 也是如此,当您在使用默认值初始化的记录的表字段中插入记录时。