최종 변경 : 2023.12.17


구조

스크린샷 2023-12-13 22.43.35.png


Service1 API 서버 구축


DataController

@Controller
@ResponseBody
public class DataController {

    @GetMapping("/data")
    public String dataP() {

        String nowTime = String.valueOf(LocalDateTime.now());

        try {

            Thread.sleep(10000);
        } catch (InterruptedException e) {

            throw new RuntimeException(e);
        }

        return nowTime;
    }
}

application.properties