我在一个小项目中使用了SpringBootApplication。架构很简单:

条目文件:

@SpringBootApplication
@PropertySource("classpath:application.properties")
public class RptApp implements CommandLineRunner
{
  @Autowired private RptService rptService;
  @Override
  public void run(String... args) throws Exception {
    rptService.doStuff(){...};
  }
}


其中RptService是一个接口,并且具有以下实现:RptServiceImpl.java。就是RptServiceImpl.java带有@Service注释。

@Service
public class RptServiceImpl implements RptService {
  @Override
  public void doStuff();
}


我的理解是@SpringBootApplication已经嵌入@ ComponentScan,@ EnableComponentScan(或类似的东西),@ Configuration,以便rptService应该由容器自动连接。相反,它引发了如下错误:

Description:

Field RptService in XXXX.RptApp required a bean of type 'xxx.xxx.xxx.RptService' that could not be found.


Action:

Consider defining a bean of type 'xxx.xxx.xxx.RptService' in your configuration.


我知道如何在提示的基础上找到解决方法,但是要点之外。

我确实编写了另一个简单的类Client,并在主文件中使用@Component和@Autowired对其进行了注释。 Spring接起来没有问题。

我的pom文件的相关部分如下所示:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>1.4.1.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
   <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-actuator</artifactId>
   </dependency>
....


有人可能会点亮?

最佳答案

RptService应该位于主条目文件的子目录中,以供选择Spring @ComponentScan

09-12 00:21