스프링 입문 - 코드로 배우는 스프링 부트(2)
-
01. View 환경설정/Build
참고 : 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 01. View 환경설정 static/index.html Hello hello static/index.html을 올려두면 Welcom Page 기능을 제공한다. 없으면 자체적으로 가지고 있는 index.html을 찾아서 반환한다. Controller java/hello/hellospring/controller package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMap..
2022.12.26 -
00. 스프링 개발 환경 세팅
참고 : 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 00. 스프링 개발 환경 세팅 JAVA version : 11 (https://jdk.java.net/java-se-ri/11) IDE : IntelliJ(https://www.jetbrains.com/ko-kr/idea/download/#section=windows) 처음에 File-Project Structure-Project를 보면 SDK가 없다고 뜬다. (나만 그럴 수 있다.) 설치한 JAVA를 넣어주면 된다. Build and run using & Run tests using을 IntelliJ IDEA로 바꿔주고, Gradle JVM을 위에서 설정한 SDK랑 맞춰준다. Spring initializr : https..
2022.12.26