项目使用MongoDB数据库,数据库框架用的是Spring Data Mongo,使用的过程中给字段加了@Transient
注解防止字段被保存到数据库,发现不起作用。
后来网上找资料发现了问题:
Transient
类
- 如果引用的是
javax.persistence.Transient
则不起作用; - 如果引用的是
org.springframework.data.annotation.Transient
则会起作用。
原因其实很简单:javax.persistence.Transient
是JPA标准的注解,所以对MongoDB无效。
参考:https://stackoverflow.com/questions/8254856/mongo-ignore-property-from-being-persisted