공부하는 블로그

Spring 기본 설정 정리 본문

Develop/Spring

Spring 기본 설정 정리

모아&모지리 2017. 9. 6. 17:01

Spring 기본 설정

HelloSpring.zip

spring기본설정.zip


  • 목적: 웹 브라우저에서 볼 수 있는 애플리케이션 개발.

  • 필요한 것: spring-webmvc.jar <- 라이브러리

  • 라이브러리를 가져오는 방법: pom.xml에 라이브러리 등록(xml 작성)

  1. pom.xml 열기

  2. Dependencies 탭으로 이동

  3. Dependencies 영역의 Add 버튼 클릭

  4. 검색어 입력창(Enter groupid, artifactId or ~~~)에 spring-webmvc 입력

  5. Group ID = org.springframework

Artifact ID = spring-webmvc를 찾아 선택 후 OK

  • 활용

  • 설정

  1. src -> main -> web app -> WEB-INF -> web.xml 파일 열기

  2. DispatcherServlet, CharacterEncodingFilter 등록

  3. src -> main -> webapp -> WEB-INF -> spring ->applicationContext.xml 파일 생성

  4. DispatcherServlet(web.xml)에 applicationContext.xml 등록

  5. web.xml에 ContextLoaderListener 등록

  6. ContextLoaderListener의 ParamValue에 나머지 Context.xml 등록

  7. applicationContext.xml 설정

    1. ViewResolver 등록

    2. mvc:annotation-driven 등록

    3. src -> main -> webapp -> WEB-INF -> view 폴더 생성

    8. ~ DI 설정



'Develop > Spring' 카테고리의 다른 글

Spring 파일업로드  (0) 2017.09.14
Spring error-page  (0) 2017.09.14
Spring Interceptor(인터셉터)  (0) 2017.09.14
Static File (CSS,JS,IMG) 설정  (0) 2017.09.13
SLF4J와 Logback을 이용한 로그 남기기  (0) 2017.09.13