当前位置:  开发笔记 > 编程语言 > 正文

Mongo - 忽略财产的持久性

如何解决《Mongo-忽略财产的持久性》经验,为你挑选了2个好方法。

我有一个标准的POJO,里面有一组属性.POJO已注释为a @Document,以便作为Document保存在MongoDB中.

如何(注释??)可以忽略/避免POJO中的某个属性被保留?



1> Saket..:

@Transient注释是.见http://static.springsource.org/spring-data/data-document/docs/current/reference/html/#mapping-usage-annotations


对于使用本机mongo代码的任何人,请尝试`@ BsonIgnore`注释.

2> Jeach..:

如果你正在寻找像我一样的实际包,这个将工作:

import org.springframework.data.annotation.Transient;

哪个来自Spring框架API文档.

但是这个JPA注释不适用于MongoDB:

import javax.persistence.Transient;

这是Java Persistence API的一部分.

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有