ARCHIVES

태그

신고하기

상단 메뉴 페이지

기본 콘텐츠로 건너뛰기

기본적인 컨트롤러 추가

프로젝트 생성 후 실행을 해보면 잘 안된다.

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;

}


} 

댓글