package com.example.cosmos_serversb.resources; import org.springframework.stereotype.Component; import javax.ws.rs.*; import com.example.common.LogUtils; @Component @Path("/") public class ServerCheckRest { @GET public String serverCheck() { LogUtils.info("サーバーをチェックしています。"); return "{\"ServerStatus\":\"200\"}"; } }