Java 웹 개발환경 초기 셋팅
1. jdk 설치
2. eclipse wtp download(kepler)
3. m2e plugin 설치 - http://download.eclipse.org/m2e-wtp/releases/kepler/
-Maven Integration for Eclipse, Maven Integration for WTP 를 설치한다.(필요시 다른 것도 설치)
주의점
- Please note that, m2e-wtp and JBoss' JAX-RS, JSF, JPA configurators overlap
and can not be installed together. The same update rules as with m2eclipse-wtp apply.
4. subclipse 설치 이클립스 MarketPlace에서 찾아서 설치
5. 톰캣 다운로드
- http://tomcat.apache.org/
- zip버전 파일 다운로드
주의점
이클리스 설치 후 "new server runtime environment eclipse" 에러 해결법
(The Selection cannot be run on any server 에러도 해결 방법은 같다)
=> JST Server Adapters Plugin을 설치해야 한다.
http://download.eclipse.org/releases/kepler를 추가한뒤에
Web, XML, Java EE and OSGi Enterprise Development 항목에서 "JST Server Adapters"를 설치한다.
6. project encoding을 변경한다. "UTF-8" 등
- window->preferences->Workspace의 text file encoding을 UTF-8로 변경해 준다. 차후에도 프로젝트를 svn에서 받았을 경우 디폴트로 "utf-8"로 만들어 짐 (요즘 대부분의 프로젝트가 UTF-8, 아닐경우 해당하는 인코딩으로 변경해준다.)
- jsp encoding 변경 (UTF-8) - 한글 깨짐 문제
제일 상단에 아래의 문구 추가
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
7. 스프링 프레임워크를 사용하려면 STS를 설치한다.
참조 URL : http://www.springsource.org/STS-installation-instructions
Installation URL : http://dist.springsource.com/release/TOOLS/update/e4.3 (for Eclipse Kepler)
- Core / Spring IDE
- Extensions / Spring IDE
- Integrations / Spring IDE
8. eclipse.ini, STS.ini에 파라미터 추가 및 커스터마이징
-vm
C:/Program Files/Java/jdk1.6.0_33/bin/javaw.exe
9. 스프링 3.2 프레임워크 다운로드 (직접 스프링 프레임워크 구성시)
다운로드 주소 : http://www.springsource.org/download/community
spring-framework-3.2.3.RELEASE-dist.zip (sha1) 48.0 MB
10. http://update.improvingworks.com 에서 infinitest 플로그인 설치
'java' 카테고리의 다른 글
jstl의 $문 그대로 출력 해결 (0) | 2013.06.30 |
---|---|
commons-lang vs commons-lang3 (0) | 2013.06.29 |
facet이란? (0) | 2013.06.29 |
메이븐 웹프로젝트 만들기 (0) | 2013.06.29 |
이클립스 버전(Indigo, Juno, Kepler) (0) | 2013.06.29 |