반응형
- application properties 하위에 port설정가능
//해당클래스는 restapi를 처리하는 컨트롤러
@RestController
@RequestMapping("/api") // uri지정
public class ApiController {
@GetMapping("/hello")
public String hello(){
return "hello";
}
}
반응형