Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 에디터
- JavaScript
- Spring
- 주님의교회
- Intent
- 제이쿼리
- 프로그래밍
- 웹개발
- java 8
- 생명주기
- Activity
- 회원가입
- 인텐트
- 안드로이드
- Java
- 아이콘
- 게시판
- 자바
- 청주
- Selector
- 영성
- TinyMCE
- Resources
- CSS
- androidstudio
- Android
- #청주주님의교회
- 글쓰기
- jQuery
- 안드로이드 AVD
Archives
- Today
- Total
공부하는 블로그
Spring 기본 설정 정리 본문
Spring 기본 설정
목적: 웹 브라우저에서 볼 수 있는 애플리케이션 개발.
필요한 것: spring-webmvc.jar <- 라이브러리
라이브러리를 가져오는 방법: pom.xml에 라이브러리 등록(xml 작성)
pom.xml 열기
Dependencies 탭으로 이동
Dependencies 영역의 Add 버튼 클릭
검색어 입력창(Enter groupid, artifactId or ~~~)에 spring-webmvc 입력
Group ID = org.springframework
Artifact ID = spring-webmvc를 찾아 선택 후 OK
활용
설정
src -> main -> web app -> WEB-INF -> web.xml 파일 열기
DispatcherServlet, CharacterEncodingFilter 등록
src -> main -> webapp -> WEB-INF -> spring ->applicationContext.xml 파일 생성
DispatcherServlet(web.xml)에 applicationContext.xml 등록
web.xml에 ContextLoaderListener 등록
ContextLoaderListener의 ParamValue에 나머지 Context.xml 등록
applicationContext.xml 설정
ViewResolver 등록
mvc:annotation-driven 등록
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 |