spring-project

Spring Boot Hello World 출력하기

가는가래 2019. 2. 23. 04:57

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!! 가 출력된다.