728x90
반응형

[Spring Boot] 개발 환경 세팅

 

환경 : JDK 1.8, Eclipse Photon(2018.12), Spring Boot 2.1.6, Gradle 3, STS(Plugin)

 

1. JDK 1.8 설치

https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

 

2. Eclipse 설치

https://www.eclipse.org/eclipseide/2018-12/

 

3. STS 플러그인 설치

Eclipse > Help > Eclipse Marketplace... > STS 검색 후 설치

 

4. 프로젝트 생성

New > Project 

5. 실행

프로젝트 우클릭 > Run as > Spring Boot App

 

6. 확인

브라우저로 localhost:8080 접근

 

Spring과는 다르게 기본페이지가 없다 기본 에러페이지가 보인다면 성공

 

---

++ 2019.07 기준 Eclipse 2019 버전은 STS 4 플러그인 설치 시 Spring Boot Starter가 보이지 않는다

++ 'ProjectName'Application.java와 동일한 위치나 하위 패키지에 속한 모든 컴포넌트들은 실행될 때 자동으로 스캔

 

Controller Example

package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Hello {

@GetMapping("/hello")
public String hello() {
return "Hello Spring Boot!!";
}
}

728x90
반응형

+ Recent posts