모든 리소스에는 리소스가 변경될 때마다 변경되는 버전 필드(etag 필드)가 있습니다. ETag는 HTTP의 표준 부분이며 다음과 같은 두 가지 경우에 캘린더 API에서 지원됩니다.
리소스 수정 시 그동안 이 리소스에 다른 쓰기가 없었는지 확인합니다 (조건부 수정).
리소스가 변경된 경우에만 리소스 데이터를 가져오기 위해 리소스 검색 시
조건부 수정
마지막으로 검색한 이후 변경되지 않은 경우에만 리소스를 업데이트하거나 삭제하려면 이전 검색의 etag 값을 포함하는 If-Match 헤더를 지정하면 됩니다. 이는 리소스의 수정사항이 손실되는 것을 방지하는 데 매우 유용합니다. 클라이언트는 리소스를 다시 가져오고 변경사항을 다시 적용할 수 있습니다.
마지막 검색 이후 항목 (및 해당 ETag)이 변경되지 않은 경우 수정이 성공하고 새 ETag가 있는 리소스의 새 버전이 반환됩니다. 그렇지 않으면 412 (전제 조건 실패) 응답 코드가 표시됩니다.
privatestaticvoidrun()throwsIOException{// Create a test event.Eventevent=Utils.createTestEvent(client,"Test Event");System.out.println(String.format("Event created: %s",event.getHtmlLink()));// Pause while the user modifies the event in the Calendar UI.System.out.println("Modify the event's description and hit enter to continue.");System.in.read();// Modify the local copy of the event.event.setSummary("Updated Test Event");// Update the event, making sure that we don't overwrite other changes.intnumAttempts=0;booleanisUpdated=false;do{Calendar.Events.Updaterequest=client.events().update("primary",event.getId(),event);request.setRequestHeaders(newHttpHeaders().setIfMatch(event.getEtag()));try{event=request.execute();isUpdated=true;}catch(GoogleJsonResponseExceptione){if(e.getStatusCode()==412){// A 412 status code, "Precondition failed", indicates that the etag values didn't// match, and the event was updated on the server since we last retrieved it. Use// {@link Calendar.Events.Get} to retrieve the latest version.EventlatestEvent=client.events().get("primary",event.getId()).execute();// You may want to have more complex logic here to resolve conflicts. In this sample we're// simply overwriting the summary.latestEvent.setSummary(event.getSummary());event=latestEvent;}else{throwe;}}numAttempts++;}while(!isUpdated && numAttempts<=MAX_UPDATE_ATTEMPTS);if(isUpdated){System.out.println("Event updated.");}else{System.out.println(String.format("Failed to update event after %d attempts.",numAttempts));}}
마지막으로 검색한 이후에 변경된 경우에만 리소스를 검색하려면 이전 검색의 etag 값을 포함하는 If-None-Match 헤더를 지정하면 됩니다. 마지막으로 검색한 이후 항목 (따라서 etag)이 변경된 경우 새 etag가 있는 리소스의 새 버전이 반환됩니다. 그렇지 않으면 304 (수정되지 않음) 응답 코드가 표시됩니다.
privatestaticvoidrun()throwsIOException{// Create a test event.Eventevent=Utils.createTestEvent(client,"Test Event");System.out.println(String.format("Event created: %s",event.getHtmlLink()));// Pause while the user modifies the event in the Calendar UI.System.out.println("Modify the event's description and hit enter to continue.");System.in.read();// Fetch the event again if it's been modified.Calendar.Events.GetgetRequest=client.events().get("primary",event.getId());getRequest.setRequestHeaders(newHttpHeaders().setIfNoneMatch(event.getEtag()));try{event=getRequest.execute();System.out.println("The event was modified, retrieved latest version.");}catch(GoogleJsonResponseExceptione){if(e.getStatusCode()==304){// A 304 status code, "Not modified", indicates that the etags match, and the event has// not been modified since we last retrieved it.System.out.println("The event was not modified, using local version.");}else{throwe;}}}
[null,null,["최종 업데이트: 2025-08-29(UTC)"],[],[],null,["# Get specific versions of resources\n\nEvery resource has a version field that changes every time the resource\nchanges --- the `etag` field. Etags are a standard part of HTTP and are\nsupported in the calendar API for two cases:\n\n- on resource modifications to ensure that there has been no other write to this resource in the meantime (conditional modification)\n- on resource retrieval to only retrieve resource data if the resource has changed (conditional retrieval)\n\nConditional modification\n------------------------\n\nIf you want to update or delete a resource only if it has not changed since\nyou last retrieved it, you can specify an `If-Match` header that contains the\nvalue of the etag from the previous retrieval. This is very useful to prevent\nlost modifications on resources. The clients have the option of re-retrieving\nthe resource and re-applying the changes.\n\nIf the entry (and its etag) has not changed since the last retrieval, the\nmodification succeeds and the new version of the resource with the new etag is\nreturned. Otherwise, you will get a 412 (Precondition failed) response code.\n| **Important:** There is no support for conditional modifications for insert operations. Instead, it is guaranteed that if you are allowed to provide a resource ID, then the operation will only succeed if no existing entry has that ID.\n\nThe snippet of sample code below demonstrates how to perform conditional\nmodifications with the\n[Java client library](/api-client-library/java/apis/calendar/v3). \n\n```java\n private static void run() throws IOException {\n // Create a test event.\n Event event = Utils.createTestEvent(client, \"Test Event\");\n System.out.println(String.format(\"Event created: %s\", event.getHtmlLink()));\n\n // Pause while the user modifies the event in the Calendar UI.\n System.out.println(\"Modify the event's description and hit enter to continue.\");\n System.in.read();\n\n // Modify the local copy of the event.\n event.setSummary(\"Updated Test Event\");\n\n // Update the event, making sure that we don't overwrite other changes.\n int numAttempts = 0;\n boolean isUpdated = false;\n do {\n Calendar.Events.Update request = client.events().update(\"primary\", event.getId(), event);\n request.setRequestHeaders(new HttpHeaders().setIfMatch(event.getEtag()));\n try {\n event = request.execute();\n isUpdated = true;\n } catch (GoogleJsonResponseException e) {\n if (e.getStatusCode() == 412) {\n // A 412 status code, \"Precondition failed\", indicates that the etag values didn't\n // match, and the event was updated on the server since we last retrieved it. Use\n // {@link Calendar.Events.Get} to retrieve the latest version.\n Event latestEvent = client.events().get(\"primary\", event.getId()).execute();\n\n // You may want to have more complex logic here to resolve conflicts. In this sample we're\n // simply overwriting the summary.\n latestEvent.setSummary(event.getSummary());\n event = latestEvent;\n } else {\n throw e;\n }\n }\n numAttempts++;\n } while (!isUpdated && numAttempts \u003c= MAX_UPDATE_ATTEMPTS);\n\n if (isUpdated) {\n System.out.println(\"Event updated.\");\n } else {\n System.out.println(String.format(\"Failed to update event after %d attempts.\", numAttempts));\n }\n }https://github.com/googleworkspace/java-samples/blob/26cb124371d51cb5cb8e6c4a3db6422bbef586fb/calendar/sync/src/main/java/com/google/api/services/samples/calendar/sync/ConditionalModificationSample.java\n```\n\nConditional retrieval\n---------------------\n\nIf you want to retrieve a resource only if it has changed since you last\nretrieved it, you can specify an `If-None-Match` header which contains the\nvalue of the etag from the previous retrieval. If the entry (and thus its etag)\nhas changed since the last retrieval, the new version of the resource with the\nnew etag will be returned. Otherwise you will get a 304 (Not Modified)\nresponse code.\n| **Note:** There are special cases in which etags won't change, such as when one of the read-only fields of a `calendarList` entry changes (e.g., calendar properties or ACLs).\n\nThe snippet of sample code below demonstrates how to perform conditional\nretrieval with the\n[Java client library](/api-client-library/java/apis/calendar/v3). \n\n```java\n private static void run() throws IOException {\n // Create a test event.\n Event event = Utils.createTestEvent(client, \"Test Event\");\n System.out.println(String.format(\"Event created: %s\", event.getHtmlLink()));\n\n // Pause while the user modifies the event in the Calendar UI.\n System.out.println(\"Modify the event's description and hit enter to continue.\");\n System.in.read();\n\n // Fetch the event again if it's been modified.\n Calendar.Events.Get getRequest = client.events().get(\"primary\", event.getId());\n getRequest.setRequestHeaders(new HttpHeaders().setIfNoneMatch(event.getEtag()));\n try {\n event = getRequest.execute();\n System.out.println(\"The event was modified, retrieved latest version.\");\n } catch (GoogleJsonResponseException e) {\n if (e.getStatusCode() == 304) {\n // A 304 status code, \"Not modified\", indicates that the etags match, and the event has\n // not been modified since we last retrieved it.\n System.out.println(\"The event was not modified, using local version.\");\n } else {\n throw e;\n }\n }\n }https://github.com/googleworkspace/java-samples/blob/26cb124371d51cb5cb8e6c4a3db6422bbef586fb/calendar/sync/src/main/java/com/google/api/services/samples/calendar/sync/ConditionalRetrievalSample.java\n```"]]