[spring] Spring Boot에서 @Repository 주석이 달린 인터페이스를 Autowire 할 수 없습니다.

저는 스프링 부트 애플리케이션을 개발 중이며 여기서 문제가 발생하고 있습니다. @Repository 주석이 달린 인터페이스를 주입하려고하는데 전혀 작동하지 않는 것 같습니다. 이 오류가 발생합니다.

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springBootRunner': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: com.pharmacy.persistence.users.dao.UserEntityDao com.pharmacy.config.SpringBootRunner.userEntityDao; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.pharmacy.persistence.users.dao.UserEntityDao] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:334)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1202)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:537)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:755)
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:757)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:480)
    at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:118)
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:686)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:320)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:957)
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:946)
    at com.pharmacy.config.SpringBootRunner.main(SpringBootRunner.java:25)
Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: com.pharmacy.persistence.users.dao.UserEntityDao com.pharmacy.config.SpringBootRunner.userEntityDao; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.pharmacy.persistence.users.dao.UserEntityDao] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:561)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331)
    ... 16 common frames omitted
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.pharmacy.persistence.users.dao.UserEntityDao] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:1301)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1047)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:942)
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:533)
    ... 18 common frames omitted

내 코드는 다음과 같습니다.

주요 애플리케이션 클래스 :

package com.pharmacy.config;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;


@SpringBootApplication
@ComponentScan("org.pharmacy")
public class SpringBootRunner {


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

엔티티 클래스 :

package com.pharmacy.persistence.users;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;



@Entity
public class UserEntity {

    @Id
    @GeneratedValue
    private Long id;
    @Column
    private String name;

}

저장소 인터페이스 :

package com.pharmacy.persistence.users.dao;

import com.pharmacy.persistence.users.UserEntity;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;


@Repository
public interface UserEntityDao extends CrudRepository<UserEntity,Long>{

}

제어 장치:

package com.pharmacy.controllers;

import com.pharmacy.persistence.users.UserEntity;
import com.pharmacy.persistence.users.dao.UserEntityDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@RestController
public class HomeController {


    @Autowired
    UserEntityDao userEntityDao;

    @RequestMapping(value = "/")
    public String hello() {
        userEntityDao.save(new UserEntity("ac"));
        return "Test";

    }
}

build.gradle

buildscript {
    ext {
        springBootVersion = '1.2.2.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
mainClassName = "com.pharmacy.config.SpringBootRunner"
jar {
    baseName = 'demo'
    version = '0.0.1-SNAPSHOT'
}


repositories {
    mavenCentral()
}


dependencies {
    compile("org.springframework.boot:spring-boot-starter-data-jpa")
    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-ws")
    compile("postgresql:postgresql:9.0-801.jdbc4")

    testCompile("org.springframework.boot:spring-boot-starter-test")
}

application.properties :

spring.view.prefix: /
spring.view.suffix: .html

spring.jpa.database=POSTGRESQL
spring.jpa.show-sql=false
spring.jpa.hibernate.ddl-auto=update


spring.datasource.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=abc123

심지어 내 코드를 Accessing data jpa 와 비교 했는데이 코드의 문제점 에 대한 아이디어가 부족합니다. 도움을 주시면 감사하겠습니다. 미리 감사드립니다.

수정 됨 : 위와 같이 제안 된대로 코드를 변경했는데 @Repository 인터페이스를 다른 구성 요소에 삽입 할 때 오류가 발생하지 않습니다. 그러나 지금 문제가 있습니다. 구성 요소를 검색 할 수 없습니다 (디버깅을 사용했습니다). 스프링이 내 구성 요소를 찾을 수 없도록 내가 뭘 잘못하고 있습니까?



답변

저장소 패키지가 @SpringBootApplication/ @EnableAutoConfiguration과 다른 경우의 기본 패키지를 @EnableJpaRepositories명시 적으로 정의해야합니다.

@EnableJpaRepositories("com.pharmacy.persistence.users.dao")SpringBootRunner 에 추가하십시오


답변

Repository가 발견되지 않는 것과 동일한 문제가 발생했습니다. 그래서 제가 한 일은 모든 것을 하나의 패키지로 옮기는 것이 었습니다. 그리고 이것은 내 코드에 아무런 문제가 없다는 것을 의미합니다. Repos & Entities를 다른 패키지로 옮기고 SpringApplication 클래스에 다음을 추가했습니다.

@EnableJpaRepositories("com...jpa")
@EntityScan("com...jpa")

그 후 Service (인터페이스 및 구현)를 다른 패키지로 이동하고 SpringApplication 클래스에 다음을 추가했습니다.

@ComponentScan("com...service")

이것은 내 문제를 해결했습니다.


답변

이 유형의 문제에 대한 또 다른 원인은 내가 공유하고 싶은 또 다른 원인이 있습니다. 왜냐하면 나는이 문제에서 한동안 어려움을 겪고 그래서 대답을 찾을 수 없기 때문입니다.

다음과 같은 저장소에서 :

@Repository
public interface UserEntityDao extends CrudRepository<UserEntity, Long>{

}

당신의 실체가있는 경우 UserEntity 가없는@Entity 클래스에 주석을, 당신은 같은 오류가있을 것이다.

이 오류는이 경우에 혼란 스럽습니다. Spring에 대한 문제를 해결하는 데 초점을 맞추고 Repository를 찾지 못했지만 문제는 엔티티이기 때문입니다. 그리고 Repository를 테스트하기 위해이 답변에 도달했다면 이 답변 이 도움 될 수 있습니다.


답변

@ComponentScan주석이 제대로 설정되지 않은 것 같습니다 . 시도해보십시오 :

@ComponentScan(basePackages = {"com.pharmacy"})

실제로 구조의 맨 위에 기본 클래스가있는 경우 (예 : com.pharmacy패키지 바로 아래) 구성 요소 스캔이 필요하지 않습니다 .

또한 둘 다 필요하지 않습니다.

@SpringBootApplication
@EnableAutoConfiguration

@SpringBootApplication주석이 포함됩니다 @EnableAutoConfiguration기본적으로.


답변

나는 NoSuchBeanDefinitionExceptionSpring Boot (기본적으로 CRUD 저장소에서 작업하는 동안)에서 수신하는 비슷한 문제가 있었으며 기본 클래스에 아래 주석을 넣어야했습니다.

@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan(basePackages={"<base package name>"})
@EnableJpaRepositories(basePackages="<repository package name>")
@EnableTransactionManagement
@EntityScan(basePackages="<entity package name>")

또한 @Component구현에 주석 이 있는지 확인하십시오 .


답변

SpringBoot에서 JpaRepository는 기본적으로 자동 활성화되지 않습니다. 명시 적으로 추가해야합니다.

@EnableJpaRepositories("packages")
@EntityScan("packages")


답변

여기에 실수가 있습니다. 누군가가 전에 말했듯이 com.pharmacy의 org.pharmacy insted in componentscan을 사용하고 있습니다.

    package **com**.pharmacy.config;

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.context.annotation.ComponentScan;


    @SpringBootApplication
    @ComponentScan("**org**.pharmacy")
    public class SpringBootRunner {