我寫了下面的代碼:HttpServerRequest:請求被處理幾次
public static void handleRequest(HttpServerRequest request, Vertx vertx) throws FileNotFoundException {
if (request.method() == HttpMethod.GET) {
if (request.path().equals("/healthcheck")) {
returnResponse(request, "I'm alive!!!\n", true);
System.out.println("OK");
return;
}
...
}
returnResponse(request, "Not Valid Request", false);
System.out.println("This request cannot be handled");
}
怪異的是,一旦我得到與路徑「/健康檢查」的GET請求,我在控制檯都得到:
OK
和
這個請求無法處理
我希望只能得到「OK」,然後該方法必須返回。 你知道如何做到這一點嗎?