개발/정리 내용
프로젝트 기본 구성 요소
aihtnyc_h
2023. 1. 15. 22:52
728x90
반응형
SMALL
src/main/java : 작성되는 코드의 경로
scr/main/resource : 실행할 때 참고하는 기본 경로(설정파일)
src/test/java : 테스트 코드를 넣는 경로
src/test/resource : 테스트 관련 설정파일 보관 경로
웹과 관련된 스프링 설정 파일
src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml
스프링 설정 파일(Bean 관리)
src/main/webapp/WEB-INF/spring/root-context.xml
톰캣의 web.xml
src/main/webapp/WEB-INF/web.xml
프로젝트의 jsp파일 경로
src/main/webapp/WEB-INF/views
728x90
반응형
LIST