[Spring] Error creating bean with name 'sampleBean': Injection of resource dependencies failed;
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'sampleBean' is defined
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'sampleBean' is defined
@resource 어노테이션 sampleBean 이 생성되지 않아서 오류가 났다.
---- 소스 일부 --
@Resource(name = "sampleBean")
private SampleBean sampleBean;
---- 소스 일부 --
삽질 끝에 설정을 추가 하여 해결은 하였으나 좀 더 찾아봐야 한다.
spring 설정 ( servlet-context ) 에 Bean 설정 확인.
없다면 정의해서 해결 ( 이렇게 하면 되는건지 확신이 없다! ㅠ.ㅠ)
<bean id="sampleBean" class="sample.model.SampleBean" />
-- 여기서 --
@resurce 어노테이션 구체적 학습필요
'Framework' 카테고리의 다른 글
[Spring] 인덱스에서 누락된 IN 또는 OUT 매개변수:: (0) | 2015.03.09 |
---|---|
[Spring, Mybatis] Error setting null for parameter #3 with JdbcType OTHER (0) | 2015.02.17 |
[Spring] Interceptor 를 설정(로그인 체크) (1) | 2014.12.10 |
[Spring] spring 3.1 을 3.2 로 올리는 방법 (maven) (0) | 2014.12.10 |
[Spring] nested exception is java.lang.NullPointerException (0) | 2014.12.09 |