java 如何解决“外地…需要一个类型为...无法找到”异常Sping Boot

vfwfrxfs  于 2023-06-28  发布在  Java
关注(0)|答案(5)|浏览(118)

我正在使用关于@Autowired和@Primary annotation的Spring Boot教程
下面你可以找到我的主类

package com.example.springtest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import service.Animal;

@SpringBootApplication
public class SpringtestApplication {
@Autowired
private Animal animal;

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

}

}

动物接口(我应该自动连接的接口)

package service;

public interface Animal {

      String characteristics();
}

Dog类(Animal接口的主要实现)

package service;

import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Service;

@Primary
@Service
public class Dog implements Animal {

    @Override
    public String characteristics() {
        return "Bark";
    }
}

Cat类(Animal接口的第二个实现)

package service;

import org.springframework.stereotype.Service;

@Service
public class Cat implements Animal {

    @Override
    public String characteristics() {
        return "Meow";
    }
}

pom.xml

<?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.example</groupId>
    <artifactId>springtest</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>springtest</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</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>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        
    </dependencies>

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

</project>

当我运行应用程序时,动物注射出现问题,我得到以下错误:

***************************
APPLICATION FAILED TO START
***************************

Description:

Field animal in com.example.springtest.SpringtestApplication required a bean of type 'service.Animal' that could not be found.

The injection point has the following annotations:
    - @org.springframework.beans.factory.annotation.Autowired(required=true)

Action:

Consider defining a bean of type 'service.Animal' in your configuration.

Spring不能自动装配的原因是什么?

zpqajqem

zpqajqem1#

您的配置文件将只选取子包中的服务。
您的SpringtestApplication应用程序当前位于package com.example.springtest包中,这意味着它将只自动连接该包下的bean。Ex com.example.springtest.services
但是,看起来您的实际服务Dog服务位于包service中,因此不会被看到。
尝试将服务迁移到com.example.springtest.services

xfb7svmp

xfb7svmp2#

您需要向主类添加一个@ComponentScan注解,告诉它扫描服务包,否则它将不会初始化这些bean

x6492ojm

x6492ojm3#

Spring将在packages com.example.springtest. * 下进行组件扫描。因为你的spring Boot 应用程序是在那里定义的,它充当应用程序的根。
由于您已经在service包下定义了Animal接口,DogCat服务,Spring无法找到这些bean,因此无法自动连接。
包层次结构应如下所示:

com
 --example
    --springtest
       -- service
6ju8rftf

6ju8rftf4#

如果您将MockBean与Junit一起用于测试控制器,请确保添加日志中报告缺少的任何依赖项的mockbean,即使您可能没有使用它。像@MockBean private BookService bookService;

8ehkhllq

8ehkhllq5#

在我的例子中,我已经在不同的文件夹中创建了服务类,而不是控制器所在的文件夹。
至少检查一次文件夹。

相关问题