- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Spring Boot 1.5.6。特别是,我正在使用 Spring Boot Data MongoDB用于连接 MongoDB。
假设我有这个MongoRepository
public interface MyRepository1 extends MongoRepository<MyDocumentClass<MyResult1>, String> {
}
还有第二个
public interface MyRepository2 extends MongoRepository<MyDocumentClass<MyResult2>, String> {
}
然后我就有了我的文档
@Document(collection = "collectionName")
public class MyDocumentClass<T extends AbstractResult> {
private String myString;
private int myInt;
private List<T> results;
public MyDocumentClass(String myString, int myInt, List<T> results) {
this.myString = myString;
this.myInt = myInt;
this.results = results;
}
public String getMyString() {
return myString;
}
public int getMyInt() {
return myInt;
}
public List<T> getResults() {
return results;
}
}
当然还有AbstractResult
以及 MyResult1
和MyResult2
扩展它。
之前,MyDocumentClass
不是通用的。然后代码运行得很好。但现在我想根据 T
选择不同的集合名称位于MyDocumentClass
。那可能吗?如果是,怎么办?
如果已经找到a way using MongoTemplates ,但这不是我在这里寻找的。
最佳答案
你不能这样做,因为 java 的 Type erasure 。泛型仅在编译类型下可见。因此,在运行时,JVM 无法区分 MyDocumentClass<MyResult1>
和MyDocumentClass<MyResult2>
。
但是,您可以将这些实例存储在同一个 MongoRepository<MyDocumentClass, String>
中。 .
关于java - 如何根据文档中的泛型类型使用 MongoRepository 存储到不同的集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45880048/
我有一个看起来像这样的文档 @Document public @Data class Note { @Id private String noteId; private Str
我正在尝试为模型“文档”实现一个 QueryDslMongoRepository @QueryEntity @Document(collection="currentDocuments") publi
在尝试将继承与 MongoRepository for C# 结合时,我遇到了序列化错误。 真正奇怪的是它可以在很短的时间内工作,但是在说重建或其他事情之后它就失败了。如果我删除该集合并创建一个新集合
我正在尝试使用 embeddedMongoDb 测试我的 spring 数据 mongodb 存储库,它们是从 MongoRepository 扩展的接口(interface).像这样tutorial
我正在尝试使用 mongo-spring-boot 实现 findAllByUUID,但没有运气。我有什么: public interface CarMatchRepository extends M
我有一个 MongoDB 集合,其中包含具有以下字段的文档: 日期(日期对象) 报价类型(str) 我想使用 MongoRepository 编写一个方法来查找日期范围内的所有文档,并且 OfferT
我正在尝试编写一个函数来更新 mongodb 集合中的某些特定字段,我尝试了 stackoverflow 旧帖子中的一些解决方案,但没有成功,在我添加实现 CollaboratorsRepositor
我使用 SpringBoot、Spring Data 和 MongoRepository 来存储和检索对象。 使用 MongoRepository 时,有没有办法提供自定义 json 反序列化器(最好
我在从 Pageable 排序时遇到问题使用MongoRepository中的地理空间方法 使用以下代码,当 requestVo.page 为 0 时,我能够检索第一个 requestVo.per_p
我正在使用 Spring Boot 1.5.6。特别是,我正在使用 Spring Boot Data MongoDB用于连接 MongoDB。 假设我有这个MongoRepository public
我希望在查询注释中使用 MongoRepository 来使用正则表达式。到目前为止我找到的唯一信息是一个中文帖子,但没有解释它是如何工作的,我不确定是否是我要找的。 @Query("{ 'name'
我正在创建一个 MongoRepository 并且需要创建一个计数查询。有人可以提供一个示例,说明通过 SpringData MongoDB MongoRepository 工具执行此操作的最佳方法
我正在使用 Mongo Repository 与 mongo 数据库对话。 这是我的连接字符串。 然后我像这样使用它: using System; using System.Lin
我有一个 Spring 项目和一个 MongoRepository。 MongoRepository 是一个扩展 MongoRepository 的接口(interface),就像 JPA 一样。 如
我正在使用带有 querydsl 的 mongodb 的 spring-data。我有一个存储库 public interface DocumentRepository extends MongoRe
我在 Mongo 中的文档结构是这样的: db.user.find() { "_id" : ObjectId("560fa46930a8e74be720009a"),
我正在通过 MongoRepository 将 Spring Data 与 MongoDB 一起使用。 我想知道是否可以使用查询注释通过过滤器进行删除。我一直在寻找这里和谷歌,我找不到任何文档。 最佳
我正在使用: org.springframework.data.mongodb.repository.MongoRepository 我从一个空的数据库开始,例如用 _id = 1234 创建一个对象
我的 pojo public class PacketData implements Serializable { private static final long serialVersio
我正在尝试使用自己的查询来查询 mongo 存储库: @Repository public interface LogEntryRepository extends MongoRepository {
我是一名优秀的程序员,十分优秀!