공부/Spring

스프링 프레임워크 기본 디렉토리 구조 (Spring Framework directory structure)

2020. 3. 5. 09:25

프로젝트 폴더/

ㄴsrc/

    ㄴmain/

        ㄴjava/            -- 자바 파일 폴더. (개발 시 생성되는 자바 파일들 저장됨)

        ㄴresources/     -- 자원 관리 폴더. (스프링 설정파일, 프로퍼티 파일 등)

        ㄴwebapp/       -- 웹 관련 폴더. (html, css, js 등)

            ㄴWEB-INF/

                ㄴspring/   -- 스프링 설정 파일 (스프링 컨테이너 생성)

                    ㄴappServlet/

                        ㄴservlet-context.xml

                    ㄴroot-context.xml

                ㄴviews/

                    ㄴhome.jsp

                ㄴweb.xml    -- 웹설정 파일

    ㄴtest/

pom.xml        -- 메이븐 설정 파일

반응형