找不到存储库 bean(不知道为啥)
Posted
技术标签:
【中文标题】找不到存储库 bean(不知道为啥)【英文标题】:Repository bean cannot be found (No idea why)找不到存储库 bean(不知道为什么) 【发布时间】:2020-11-21 11:16:28 【问题描述】:我正在尝试运行我的应用程序并收到此错误:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in com.danielturato.product.services.ProductServiceImpl required
a bean of type 'com.danielturato.product.persistence.ProductRepository' that could not be
found.
Action:
Consider defining a bean of type 'com.danielturato.product.persistence.ProductRepository' in
your configuration.
我不知道为什么会这样。我试图查看过去的解决方案,其中说使用 @EnableMongoRepository 指向正确的包,但是我已经尝试过,但它不起作用。我还尝试在我的存储库上方添加 @Repository 注释(即使它不需要),但它仍然无法正常工作。这是我的存储库、应用程序以及无法注入存储库的代码。
应用:
@SpringBootApplication
@ComponentScan("com.danielturato")
public class ProductServiceApplication
private static final Logger LOG = LoggerFactory.getLogger(ProductServiceApplication.class);
public static void main(String[] args)
SpringApplication.run(ProductServiceApplication.class, args);
存储库:
public interface ProductRepository extends ReactiveCrudRepository<ProductEntity, String>
Mono<ProductEntity> findByProductId(int productId);
ProductServiceImpl:
@RestController
public class ProductServiceImpl implements ProductService
private static final Logger LOG = LoggerFactory.getLogger(ProductServiceImpl.class);
private final ServiceUtil serviceUtil;
private final ProductRepository repository;
private final ProductMapper mapper;
@Autowired
public ProductServiceImpl(ProductRepository repository, ProductMapper mapper, ServiceUtil serviceUtil)
this.repository = repository;
this.mapper = mapper;
this.serviceUtil = serviceUtil;
Pom 文件:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.danielturato</groupId>
<artifactId>product-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>product-service</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.4.0.Beta1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.danielturato</groupId>
<artifactId>api</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.danielturato</groupId>
<artifactId>util</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
<version>2.3.1.RELEASE</version>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>2.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-stream-kafka</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.3.0.Beta2</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
如果有人可以为我推荐任何尝试或希望我在这里提供更多信息,请告诉我。
【问题讨论】:
在ProductRepository
接口中添加@Repository
注解
我试过了,还是不行
【参考方案1】:
您在问题中包含的堆栈跟踪确实指向 ProductRepository 不可用于自动装配,正如先前的评论所指出的那样,这是因为您缺少存储库中的 @Repository 注释。
另一个原因是如果您的存储库找不到匹配的实体。例如,如果 Id 是错误的类型或缺少 @Id 注释,如果实体没有 @Entity/@Document 或缺少全参数构造函数,则可能是这样。另外,在您的情况下,您添加了一个 findByProductId() 方法,因此您的实体也需要一个 productId 字段。
我还会从您的应用程序类中删除 @ComponentScan 注释,因为它默认包含在 @SpringBootApplication 中,除非您有意将其指向不同的类路径。
如果仍然如您在 cmets 中提到的那样失败,是因为同样的原因而失败,还是现在有与 ProductMapper 或 ServiceUtil 相关的不同错误?
【讨论】:
感谢您的帮助,但注释不是问题。问题实际上是我在使用 spring-boot-starter-data-mongodb 依赖时它应该是 spring-boot-starter-data-mongodb-reactive 依赖。 @Daniel 你能和我分享你的代码吗?我正在使用 psql 但我遇到了同样的错误。以上是关于找不到存储库 bean(不知道为啥)的主要内容,如果未能解决你的问题,请参考以下文章
字段 vehicleRepository 需要一个找不到的 ..VehicleInterface 类型的 bean