에러 모음

CannotLoadBeanClassException

junani0v0 2024. 4. 18. 01:07

 

< 에러 메시지 >

org.springframework.beans.factory.CannotLoadBeanClassException: 
Cannot find class [com.portfolio.www.service.JoinService] for bean with name 'joinService' 
defined in file [C:\dev\ide\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\
03_springJdbc01\WEB-INF\classes\context-root.xml]; 
nested exception is java.lang.ClassNotFoundException: com.portfolio.www.service.JoinService

 

< 원인 >

joinService의 빈이 제대로 등록되지 않아 빈을 못찾아 발생

joinService는 수동으로 bean을 주입하였음

 

< 해결 >

    <bean id="joinService" class="com.portfolio.www.service.JoinService">
        <property name="joinDao" ref="joinDao"/>
    </bean>

수동 bean등록문제가 없어 서버를 재시작하니 해결.....?? 왜 그런거지??