아래와 같이 진행하여 STS의 Boot Dashboard에서 Spring Boot 애플리케이션을 실행할 수 있습니다.
hello-world
우클릭 하고 (Re)start를 선택합니다.또는 Terminal이나 Git Bash 및 명령 프롬프트(CMD)를 열어 아래와 같이 명령을 실행하여 애플리케이션을 실행할 수 있습니다.
macOS/Linux/Git Bash :
./mvnw spring-boot:run
Windows 명령 프롬프트(CMD) :
mvnw spring-boot:run
웹 브라우저를 열고 http://localhost:8080/greeting
에 접속하면 아래와 같이 화면에 출력되는 것을 확인할 수 있습니다.
{"id":1,"content":"Hello, World!"}
name
쿼리 문자열 매개 변수를 추가하여 http://localhost:8080/greeting?name=Jason
와 같이 접속하면, content
속성의 내용이 변경되는 것을 확인할 수 있습니다.
{"id":2,"content":"Hello, Jason!"}