프로젝트 생성1 Intellij IDEA에서 Spring Legacy 프로젝트 생성하기 Intellij IDEA Ultimate 2019.2.1 버전을 사용했음. New Project 여기까지 하면 일단 메이븐 프로젝트가 생성이 완료된다. 프로젝트 우클릭 후 add framework support 아래와 같은 구조가 자동으로 생성된다. 컨트롤러 만들어주기 package me.ps5.test; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController class TestController { @GetMapping("/") public String test() { return "HELLO"; } } appli.. 2019. 8. 27. 이전 1 다음