에러하나 해결하면 다음 에러가 나오는 답도 없는 상황! 그러나 게시판만들기는 계속된다..
이번에러는 어노테이션 관련에러!
org.springframework.beans.factory.UnsatisfiedDependencyException
org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type
available: expected single matching bean but found 2
이게 오류 하나의 전문이다..
마지막줄을 보면 힌트가 있는데 매치할 수 있는 빈은 하나인데 두개로 설정해놔서 오류가 났다는 것!
구글링하여 정보글을 발견.
https://theserverside.tistory.com/m/226
@Autowired 사용시 동일한 타입의 Bean 객체를 2개 이상일때 Injection of autowired dependencies failed 에러가 발생한다고 한다..
해결방법은 @Autowired 사용시에는 동일한 타입을 Bean 객체를 2개이상 사용하면 안되고
@Autowired 로 명시해준 클래스의 동일한 클래스를 XML 설정파일에 bean 으로 설정하지 말아야한다.
라고 한다..