728x90
STS 4 설치
1. STS 다운로드
Spring 홈페이지 → Spring Tools 4 for Eclipse → 원하는 운영체제 다운로드
2. 설치
명령 프롬프트 실행
다운로드 파일 압축해제
java -jar 다운로드 파일경로\다운로드 파일명.확장자
// ex
java -jar D:\PJH\resource\spring-tool-suite-4-4.20.0.RELEASE-e4.29.0-win32.win32.x86_64.self-extracting.jar
압축해제 성공
3. 프로그램 실행
C:\Users\User\sts-4.20.0.RELEASE 경로 이동 → SpringToolSuite4.exe 실행
실행 화면
4. 프로젝트 생성
File → New → Spring Starter Project 클릭
Name, Type, Packaging, Java Version, Language, Group, Package 입력 → Next 클릭
Available → Web 검색 → Web - Spring Web 선택 → Finish 클릭
생성완료
5. 초기 설정
application.properties
src/main/resources/application.properties
# application.properties
server.port=8088
# JSP 설정 - VR
spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.jsp
application.properties
build.gradle
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// JSP
implementation 'org.apache.tomcat.embed:tomcat-embed-jasper'
// JSTL
implementation group: 'org.glassfish.web', name: 'jakarta.servlet.jsp.jstl', version: '2.0.0'
}
build.gradle
JSP 컴파일러, JSTL 라이브러리 의존성 추가
View 위치 폴더 생성
src/main/webapp/WEB-INF/views 폴더 생성
6. 실행
Boot Dashboard → 프로젝트 선택 → Start 버튼 클릭
실행 화면
728x90