我想创建一个蒙戈上限集合,为此,我在教程中看到,我需要使用蒙戈操作bean。但是我不能自动连接它。
描述:
com中构造函数的参数1。戴蒙。反应性Spring。初始化。ItemDataInitializer需要“org”类型的bean。springframework。数据mongodb。果心找不到MongoOperations。
行动:
考虑在您的配置中定义一个类型为“org.springframework.data.mongodb.core.蒙戈操作”的bean。
build.gradle:
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.daimon.reactivespring'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo'
testImplementation 'io.projectreactor:reactor-test'
}
test {
useJUnitPlatform()
exclude 'com/daimon/reactivespring/fluxmono/**'
}
我需要注入它的类:
@Component
@RequiredArgsConstructor
@Profile("!test")
public class ItemDataInitializer implements CommandLineRunner {
//@Autowired
private final ItemReactiveRepository itemReactiveRepository;
//@Autowired
private final MongoOperations mongoOperations;
@Override
public void run(String... args) throws Exception {
initialDatSetup();
createCappedCollection();
}
private void initialDatSetup() {
itemReactiveRepository.deleteAll()
.thenMany(Flux.fromIterable(initItems()))
.flatMap(itemReactiveRepository::save)
.subscribe(item -> System.out.println("Item inserted " + item));
}
private List<Item> initItems() {
return Arrays.asList(new Item(null, "Samsung TV", 200.0),
new Item(null, "Apple TV", 300.0), new Item(null, "LG TV", 400.0));
}
private void createCappedCollection() {
mongoOperations.dropCollection(ItemCapped.class);
mongoOperations.createCollection(ItemCapped.class, CollectionOptions.empty().maxDocuments(20).size(50000).capped());
}
}
谢谢你
尝试添加此构造函数:
public ItemDataInitializer(ItemReactiveRepository itemReactiveRepository, MongoOperations mongoOperations){
this.itemReactiveRepository = itemReactiveRepository;
this.mongoOperations = mongoOperations;
}
有人建议切换到反应式合作。但由于某些原因,它并没有创造一个封顶的集合。我换成了spring boot 2.2.7。发布版本,它成功了
我正在努力学习一本书名为《SpringMVC初学者指南》的书,我一直在努力创建存储库对象。我不断地得到一个BeanCreationException。不知道我还错过了什么。我想知道是否有人能帮我解决这个问题。 请在下面找到我的代码。谢谢 BeanCreationException XML文件: ProductCrontroller: 产品存储库: InMemoryProductRepository
我在spring中定义了一个映射: 然后我将这个bean自动转换为一个属性,该属性定义为: 干杯。
问题内容: Spring无法自动连线对象?是否可以在抽象类中自动装配对象。假设所有模式都在application-context.xml中提供 问题:@Service @Component应该在基类和扩展类(如果有)上使用什么批注? 例 Extending class application-context.xml 问题答案: 具有自动接线字段的抽象类 以及几个带有@Component注释定义的子
和我的配置类: 1)AppConfig。 2)AppInitializer: 不幸的是同样的结果: 找不到依赖项得[Kamienica.Service.CustomUserDetailsService]类型得合格bean:需要至少1个具有此依赖项自动候选资格得bean.依赖项注释:{@org.SpringFramework.Beans.Factory.Annotation.AutoWired(re
我的GitLab管道在每次推送时自动执行,我想手动运行管道,而不是每次推送。 管道文件:https://docs.gitlab.com/ee/ci/yaml/#workflowrules 我试过这个。gitlab ci。yml
我正在查看工作区中的一些旧示例。我看不出自动连线是如何完成的,因为没有@Autowired。Spring Boot默认配置。 它工作得很好,但是如果没有自动配线,这些豆子是如何自动配线的呢?它们是自动作为字段还是在构造函数中?