자세한 내용 참고

프로젝트 생성

Untitled

  1. Package name

Untitled

테스트 컨트롤러

package study.datajpa.controller;

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

@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello() {
        return "hello";
    }
}

Referece