nugawiki

./categories/back-end

Spring 개발환경 Eclipse EE·STS·Tomcat

업데이트 2026-07-21 조회수

구성

  1. Eclipse EEeclipse.org/downloads/packages
  2. STS — Help → Eclipse Marketplace → "sts" 검색·설치 (Maven 내장)
  3. Tomcattomcat.apache.org zip/installer
  4. 연동 — Window → Preferences → Server → Runtime Environment → Add → Tomcat 경로·JRE
  5. 프로젝트 — File → New → Other → Spring → Legacy Project → Spring MVC Project
  6. 실행 — 프로젝트 우클릭 → Run As → Run on Server

servlet-context.xml 오류 시

pom.xml에 추가:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>3.1.0.RELEASE</version>
</dependency>

./comments