[문제]

org.springframework.beans.factory.NoSuchBeanDefinitionException 오류가 계속 뜸.

[해결]

@Autowired를 했으면 JDBC Templatexml 파일에 명시해줘야함. 그걸 안 해서 오류 생김.

나는 root-context.xmlJDBC Template을 만들어줬음.

 

JdbcTemplate에 @Autowired를 줬다.

 

root-context.xml에 JdbcTemplate <bean>을 만들어주면서 해결.

 

[문제]

properties파일을 찾을 수 없다는 에러가 났다.

알고보니 properties파일의 경로가 root-context.xml에 적힌 것과 달랐던 것.

[해결]

properties파일 경로를 확인하고 root-context.xml파일에서 경로를 바르게 줌.

파일위치
properties파일의 경로

 

잘못된 주소

 

바로 잡은 형태

+ Recent posts