프로젝트 생성 후 실행을 해보면 잘 안된다.
Class 위에 @RestController 도 넣어 주어야 하고
@RequestMapping(path = "/helloWorld") 도 확인 하자.
스프링 어노테이션 @GetMapping 이 잘 안되서 오래 삽질 했다.
@RestController
public class ApiController {
@RequestMapping(path = "/helloWorld")
public String helloWorld() {
String aa = LocalDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE_TIME);
System.out.print(aa);
return aa;
}
}
댓글
댓글 쓰기