Whitelabel Error Page 모범 사례
2191 단어 SpringBoot 시작하기
참조 코드
package com.example.youhaimi.api.v1;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class BannerController {
@GetMapping("/test")
@ResponseBody
public String test(){
return "hellow, qiaoguo";
}
}