스프링 버전 변경-폴더 및 파일 설명src/main/java : 작성되는 코드의 경로src/main/resources : 실행할 때 참고하는 기본 경로(주로 설정 파일)src/test/java : 테스트 코드를 넣는 경로src/test/resources : 테스트 관련 설정 파일 보관 경로src-main-webapp-WEB-INF-spring-appServlet-servlet-context.xml : 웹과 관련된 스프링 설정 파일src-main-webapp-WEB-INF-spring-root-context.xml : 스프링 설정 파일src-main-webapp-WEB-INF-views : 템플릿 프로젝트의 jsp 파일 경로src-main-webapp-web.xml : Tomcat의 web.xml 파일프로..