我正在设置一个新的 Springboot 2 应用程序,它同时使用 MYSQL 数据库和 MongoDB 数据库进行数据存储。
我无法理解如何为同时使用 DataJPA 和 DataMongo 的测试编写类。
通过使用同时使用 JPA 存储库和 Mongo 存储库的服务,在两者之间设置查询以供实际使用是一项相对简单的任务。
在编写测试用例时,我能够使用 H2 和嵌入式 Mongo 轻松地为 JPA 实体 ( @DataJPATest) 或仅为 Mongo 实体 ( ) 编写测试。@DataMongoTest
不可能同时使用 JPA 和 Mongo 注释定义测试类,因为 Spring 只允许 1 个引导程序。
这是来自 JPA MYSQL 的类:
@Entity
@Data
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Size(max = 255)
private String name;
@Size(max = 1000)
private String description;
}
Mongo Repos 的类:
@Document
@Data
public class Review {
@Id
private String id;
@Indexed
private String title;
private String reviewText;
private boolean recommended;
@Indexed
private Integer productId;
@DBRef
private List<Comment> comments;
}
@Document
@Data
public class Comment {
@Id
private String id;
private String title;
private String commentText;
}
样本预期测试类:
@RunWith(SpringRunner.class)
@DataJpaTest
@DataMongoTest
public class ReviewRepositoryTests {
@Autowired
TestEntityManager entityManager;
使用 DataJPA 和 DataMongo 编写测试类会导致此堆栈错误:
java.lang.IllegalStateException: Configuration error: found multiple declarations of @BootstrapWith for test class [xyz.cybersapien.tech.reviews.ReviewRepositoryTests]: [@org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTestContextBootstrapper), @org.springframework.test.context.BootstrapWith(value=class org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTestContextBootstrapper)]
慕勒3428872
相关分类