본문 바로가기
프로그래밍 언어/Etc

[Spring/java] org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named '***Service' must be of type [...***Service], but was actually of type [...***Impl] 에러 해결 방법

by 우림 2015. 6. 12.
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named '***Service' must be of type [egovframework.com.cod.hand.service.***Service], but was actually of type [egovframework.com.cod.hand.service.impl.***Impl]


이런 에러가 난다구요?

저도 이 에러 때문에 엄청 헤맸는데요 ㅠ
해결방법은 굉장히 간단합니다.


이렇게 ***Imple.java 파일이 돼 있는데요.

@Service("***Service") 로 annotation 했던 파일을 implements 해주면 됩니다.

@Service("handSelectService")

public class HandSelectServiceImpl extends EgovAbstractServiceImpl implements HandSelectService {


이렇게 수정하고 Was 실행하면 잘 될 겁니다.

댓글