Spring Boot Hello World 출력하기
package com.quickguide.backend.hello.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorldController {
@RequestMapping("/")
public String hello() {
return "Hello World!!";
}
}
스프링 시큐리티가 적용되어 있으므로 기동시 나오는 로그인을 하면 hello world!! 가 출력된다.
'spring-project' 카테고리의 다른 글
Spring Boot에 Spring Security 적용하기 (Spring Security Java Config) (0) | 2019.02.23 |
---|---|
SpringBoot Connection Pool - HikariCP (0) | 2019.02.23 |
Spring Boot 프로젝트 기동하기 (초기 프로젝트를 IntelliJ에서 Open 한 뒤에 실행하기) (0) | 2019.02.23 |
Spring boot 프로젝트 초기 생성 (0) | 2019.02.23 |
Spring Boot 자동 재시작 (0) | 2018.02.26 |