web.xml 접근 가능할 경우 문제점 spring의 web.xml에 명시된 contextConfigLocation과 classpath [contextConfigLocation] contextConfigLocation classpath:config/spring/spring-admin.xml * contextConfigLocation: Spring 로딩시 읽어올 설정 파일 명시, 해당 명시가 없을 경우 default로, /WEB-INF/applicationContext.xml 을 읽어온다. * classpath: 컨테이너에서 정의하여 사용하는 경로의 변수 IDE에서 src/main/resources 에 파일을 하나 생성해 놓고 빌드를 해보면 생성한 파일이 WEB-INF/classes 에 들어가 있는걸 볼 ..