当前位置: 首页 > 知识库问答 >
问题:

构造函数的参数 0 需要一个找不到的 Bean

滑弘扬
2023-03-14

我不确定我的代码有什么问题。我试着学习Spring Boot WebFlux。但我无法运行应用程序,因为我得到以下错误:

com.thomsoncodes.todo.controller.ToDoController中构造函数的参数0需要一个类型为“com.thomsoncodes.todo.repository.ToDoRespository”的bean,但找不到该bean

疲惫@Autowired但我仍然有同样的错误。

这是我的代码

build.gradle

plugins {
  id 'org.springframework.boot' version '2.1.3.RELEASE'
  id 'java'
}

apply plugin: 'io.spring.dependency-management'

group = 'com.thomsoncodes.todo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
  mavenCentral()
}

dependencies {
   implementation 'org.springframework.boot:spring-boot-starter-webflux'
   compileOnly 'org.projectlombok:lombok'
   testImplementation 'org.springframework.boot:spring-boot-starter-test'
   testImplementation 'io.projectreactor:reactor-test'
}

应用程序类别

package com.thomsoncodes.todo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootTodoWebfluxApplication {

 public static void main(String[] args) {
    SpringApplication.run(SpringBootTodoWebfluxApplication.class, args);
 }

}

控制器类

package com.thomsoncodes.todo.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

import com.thomsoncodes.todo.domain.ToDo;
import com.thomsoncodes.todo.repository.ToDoRespository;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

@RestController
public class ToDoController {

   private ToDoRespository repository;

   public ToDoController(ToDoRespository repository) {
    this.repository = repository;
   }

   @GetMapping("/rodo/{id}")
   public Mono<ToDo> getTodo(@PathVariable String id) {
      return this.repository.findById(id);
   }

   @GetMapping("/todo")
   public Flux<ToDo> getToDos() {
      return this.repository.findAll();
   }
}

域类

 package com.thomsoncodes.todo.domain;

 import java.time.LocalDateTime;
 import java.util.UUID;

 import lombok.Data;

 @Data
 public class ToDo {
 private String id;
 private String description;
 private LocalDateTime created;
 private LocalDateTime modified;
 private boolean completed;

 public ToDo() {
    this.id = UUID.randomUUID().toString();
    this.created = LocalDateTime.now();
    this.modified = LocalDateTime.now();
 }

 public ToDo(String description) {
    this();
    this.description = description;     
 }

 public ToDo(String description, boolean completed) {
    this();
    this.description = description;
    this.completed = completed;
  }
}

知识库类

package com.thomsoncodes.todo.repository;

import java.util.Arrays; 
import com.thomsoncodes.todo.domain.ToDo;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

public class ToDoRespository {

private Flux<ToDo> toDoFlux = Flux.fromIterable(Arrays.asList(
        new ToDo("Do Homework"),
        new ToDo("Workout in the morning", true),
        new ToDo("Make dinner tonight"),
        new ToDo("Clean the studio", true),
        new ToDo("Learn spring boot", true)));

  public Mono<ToDo> findById(String id) {
    return Mono.from(
            toDoFlux.filter( todo -> todo.getId().equals(id)));
  }

  public Flux<ToDo> findAll() {
     return toDoFlux;
  }


}

共有2个答案

赵炯
2023-03-14

ToDoRepository未标记为@Component。

籍星汉
2023-03-14

你需要做一些改变,

  1. @Repository@Component
  2. 注释 到存储库
  3. 控制器类(可选)中使用@Autowired进行注释

 类似资料: