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.
它看起来不像我所做的研究,但有什么方法可以让 Hibernate 假设一个字段/属性不适合 ORM,除非明确添加@Column?
@Column
我知道@Transient。为正在持久化的少数字段添加数百次是试图避免的。
@Transient
使用 JPA,只要一个类被 @Entity 注释,它的所有属性都会自动映射到一个表中。如果不需要映射属性,可以使用@javax.persistence.Transient 注解或java transient 关键字。所以这是 JSR 状态下休眠的默认行为。