我的应用程序运行正常。我用这个官方参考来学习吗啡:
http://mongodb.github.io/morphia/1.2/getting-started/quick-tour/
在员工类中:
@Indexes(
@Index(value = "salary", fields = @Field("salary"))
)
它表示值是不推荐使用字段()。如何编写Index注释以摆脱弃用?
答案 0 :(得分:1)
您可以删除value属性。信息已由字段属性:
给出@Indexes(@Index(fields = @Field("salary")))
这应该有效
有关详细信息,请查看:https://github.com/mongodb/morphia/wiki/AllAnnotations