프로젝트 기본 경로 New -> Spring Legacy Project -> Spring MVC Project로 프로젝트 생성 시 만들어지는 기본 경로에 대한 설명이다. src/main/java : 서버단 JAVA 파일 src/test/java : 단위 테스트를 위한 JAVA 파일 src/main/resources : src/main/java 관련 설정 파일 src/test/resources : src/main/test 관련 설정 파일 src/main/webapp/WEB-INF/views : jsp, html 파일 pom.xml : 라이브러리 의존성 관리 src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml : 웹과 관련된 스프링 설정 파일(컨트롤러를 찾을 수 있게 스캔해주는 설정) src/main/webapp/WEB-INF/spring/root-context.xml : 스프링 객체 관련 설정 파일 출처 따즈아 - 배워서 바로...
원문 링크 : 스프링 프레임워크 프로젝트 기본 경로