
[Spring Boot]@RestController, @RequestMapping을 이용해 Hello World띄우기
·
Web/Spring Boot
웹페이지에 Hello World문구 띄우기 전 포스팅에서 프로젝트를 생성한뒤 서버를 실행시키는것까지 했었다. 이번엔 @RestController와 @RequestMapping 어노테이션을 이용해서 Hello World를 띄어본다 import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication @..