gpt4 book ai didi

java - "A bean with that name has already been defined"错误出现在 spring boot 多模块项目中

转载 作者:行者123 更新时间:2023-12-04 15:38:23 30 4
gpt4 key购买 nike

我正在使用一个 Spring Boot 多模块 maven 项目,在这里我遇到了异常,每次当我运行应用程序时,它都会因不同的文件而失败。

 The bean 'evServiceCpeRepository' could not be registered. A bean with that name has already been defined

这个项目有三个模块 sbill , amr 和 executable ,

这是我在 sbill 模块中的所有类... amr 模块是空的,它只有一个 Controller ,在 amr 模块 pom 文件中,我为 sbill 模块添加了依赖项,因为 amr 模块可以访问 sbill 的类。

可执行模块只包含 spring boot 主类,除此之外,该模块没有任何类是可执行模块。
 @SpringBootApplication
@ComponentScan(basePackages = { "com"})
@EntityScan(basePackages = { "com"})
@EnableJpaRepositories(basePackages = { "com"})
public class MainClass {public static void main(String[] args) {
SpringApplication.run(MainClass.class, args);
}}

可执行模块的pom
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sbill</groupId>
<artifactId>sbill-wrapper</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<packaging>war</packaging>
<artifactId>executable</artifactId>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.sbill</groupId>
<artifactId>sbill</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>com.sbill</groupId>
<artifactId>amr</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>

</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>

<!-- Adding plugin of mavan resource to copy dist folder for war -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>


<outputDirectory>${project.build.directory}/classes/static/</outputDirectory>
<resources>
<resource>
<directory>../web/dist</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

最佳答案

我可以自己解决这个问题...
问题与 @EnableJpaRepositories(basePackages = { "com"}) 有关注解。这个注释我已经放在 Mainclass.java 文件中,这个注释已经存在于模块 sbill 的一个配置文件中。

所以有两次 spring 试图创建 bean,这就是它失败的原因。
我从另一个配置文件中删除了该注释,它工作得很好。

关于java - "A bean with that name has already been defined"错误出现在 spring boot 多模块项目中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58976303/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com