gpt4 book ai didi

mongodb - 将枚举保存到 mongoDB

转载 作者:IT老高 更新时间:2023-10-28 13:13:30 27 4
gpt4 key购买 nike

有没有办法将枚举保存到 mongoDB 中?我想保存如下内容:

public enum SnapshotType {
EVENT,
MEMORY
}

最佳答案

我假设您的意思是将枚举值保存到集合中。

基本上,您只需将其添加到您的实体模型中,如下所示:

@Document(collection = "MyEntity ")
public class MyEntity {
public SnapshotType snapshotType;
}

它将它作为一个字符串存储在mongo中,并在你读出来时自动转换。

关于mongodb - 将枚举保存到 mongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9588802/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com