我得到以下错误:

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

Description:

Parameter 0 of method setApplicant in webService.controller.RequestController required a bean of type 'com.service.applicant.Applicant' that could not be found.


Action:

Consider defining a bean of type 'com.service.applicant.Applicant' in your configuration.

我以前从未见过这个错误,但奇怪的是@Autowire不工作。项目结构如下:

申请人接口

public interface Applicant {

    TApplicant findBySSN(String ssn) throws ServletException;

    void deleteByssn(String ssn) throws ServletException;

    void createApplicant(TApplicant tApplicant) throws ServletException;

    void updateApplicant(TApplicant tApplicant) throws ServletException;

    List<TApplicant> getAllApplicants() throws ServletException;
}

ApplicantImpl

@Service
@Transactional
public class ApplicantImpl implements Applicant {

private static Log log = LogFactory.getLog(ApplicantImpl.class);

    private TApplicantRepository applicantRepo;

@Override
    public List<TApplicant> getAllApplicants() throws ServletException {

        List<TApplicant> applicantList = applicantRepo.findAll();

        return applicantList;
    }
}

现在我应该能够自动连线申请人,并能够访问,但在这种情况下,当我在@RestController中调用它时,它是不工作的:

@RestController
public class RequestController extends LoggingAware {

    private Applicant applicant;

    @Autowired
    public void setApplicant(Applicant applicant){
        this.applicant = applicant;
    }

    @RequestMapping(value="/", method = RequestMethod.GET)
    public String helloWorld() {

        try {
            List<TApplicant> applicantList = applicant.getAllApplicants();

            for (TApplicant tApplicant : applicantList){
                System.out.println("Name: "+tApplicant.getIndivName()+" SSN "+tApplicant.getIndSsn());
            }

            return "home";
        }
        catch (ServletException e) {
            e.printStackTrace();
        }

        return "error";
    }

}

------------------------ 更新1 -----------------------

我添加了

@SpringBootApplication
@ComponentScan("module-service")
public class WebServiceApplication extends SpringBootServletInitializer {

    @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(WebServiceApplication.class);
    }

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

}

错误消失了,但什么也没发生。然而,当我在添加@ComponentScan()之前注释掉所有与RestController中的申请人相关的内容时,我能够返回一个字符串的UI,从而意味着我的RestController正在工作,现在它被跳过了。我丑陋的白色标签错误页现在。

--------------------- 更新2 ------------------------------

我添加了它所抱怨的bean的基本包。错误读取:

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

Description:

Parameter 0 of method setApplicantRepo in com.service.applicant.ApplicantImpl required a bean of type 'com.delivery.service.request.repository.TApplicantRepository' that could not be found.


Action:

Consider defining a bean of type 'com.delivery.request.request.repository.TApplicantRepository' in your configuration.

我添加了@ComponentScan

@SpringBootApplication
@ComponentScan({"com.delivery.service","com.delivery.request"})
public class WebServiceApplication extends SpringBootServletInitializer {

    @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(WebServiceApplication.class);
    }

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

}

---------------------------- 更新3 ----------------------

添加:

@SpringBootApplication
@ComponentScan("com")
public class WebServiceApplication extends SpringBootServletInitializer {

仍然在抱怨我的ApplicantImpl类@自动连接我的repo TApplicantRepository到它。


当前回答

添加Spring Boot Data JPA Starter依赖为我解决了这个问题。

Maven

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
    <version>2.2.6.RELEASE</version>
</dependency>

Gradle

compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '2.2.6.RELEASE'

或者你可以直接到这里

其他回答

你的申请人类似乎没有被扫描。默认情况下,所有以根目录开头的包都将被扫描,你在其中放置了@SpringBootApplication类。

假设你的主类“WebServiceApplication”在“com.service”中。Something”,然后是属于“com.service”的所有组件。“某些东西”被扫描,而“com.service.”“申请人”将不会被扫描。

你可以重新构造你的包,使“WebServiceApplication”置于根包之下,而所有其他组件都成为根包的一部分。或者你可以包含@SpringBootApplication(scanBasePackages={"com.service.something","com.service.application"})等,这样"ALL"组件就会在spring容器中被扫描和初始化。

根据评论进行更新

如果你有多个由maven/gradle管理的模块,spring所需要的就是要扫描的包。你告诉春天扫描“com”。Module1”,还有另一个模块,其根包名为“com”。Module2”,这些组件不会被扫描。您甚至可以告诉spring扫描“com”,然后它将扫描“com.module1.”和“com.module2.”中的所有组件。

这可能是因为项目被分解成不同的模块。

@SpringBootApplication
@ComponentScan({"com.delivery.request"})
@EntityScan("com.delivery.domain")
@EnableJpaRepositories("com.delivery.repository")
public class WebServiceApplication extends SpringBootServletInitializer {

如果您的类依赖是由Spring管理的,那么如果我们忘记在POJO类中添加默认/空参数构造函数,则可能会发生此问题。

重要的是:

对于那些通过谷歌通用bean错误消息而来到这里,但实际上试图通过客户端接口上的@FeignClient注释将一个虚拟客户端添加到Spring Boot应用程序的人来说,上述解决方案都不适合您。

为了解决这个问题,你需要在你的Application类中添加@EnableFeignClients注释,如下所示:

@SpringBootApplication
// ... (other pre-existing annotations) ...
@EnableFeignClients // <------- THE IMPORTANT ONE
public class Application {

旁注:在@SpringBootApplication下面添加@ComponentScan(…)是多余的,你的IDE应该这样标记它(至少IntelliJ IDEA是这样做的)。

我在Spring Boot 2的Maven多模块项目中遇到了熟悉的问题。这个问题与子Maven模块中包的命名有关。

@SpringBootApplication封装了很多组件,比如@ComponentScan, @EnableAutoConfiguration, jpa-repositories, json-serialization等等。他把@ComponentScan放在了com.*******中。空间方案。这部分的包com.*******。所有模块的空间必须是公用的。

解决方法:

您应该重命名所有模块包。换句话说,您必须在所有Maven模块的所有包中都有相同的父部分。例如- com.*******.space 此外,您必须将您的入口点移动到这个包- com.*******.space