Files
document-haness/docs/clean-architecture-backend-template/tech-log-studio/transaction-and-consistency-models/concept/concept-messaging-outbox-jdbc-postgresql-c02.md
T
DongHyeonkaandClaude Fable 5.1 b25357c48a docs(clean-architecture-backend-template): fold analysis into final and re-select one topic
- analysis/·source-index·state.json 을 final/document.md 제2부·제3부로 접었다. SSOT 는 하나다
- 파일럿 — commit-ambiguity-as-a-result 를 새 기준으로 재선별. 후보 14 → 글감 5
  (PROMOTE 5 · MERGE_INTO 3 · KEEP_IN_SSOT 4 · 보류 2). 기록 5건을 다시 썼고 그림 1개를
  techviz 로 만들었다
- 재선별이 잡은 것: 제1부 §6.2·§11.1 이 자기 §13.2 와 어긋나 있었다(레인을 안 돌렸다 vs
  돌렸다) — 정정. 이미 답이 나와 있던 Question 을 HEAD 재실행 질문으로 다시 세웠다.
  Concept 이 인용한 코드가 SSOT 에 없어 뺐다
- candidateScope·sourceRepository 기록. 나머지 43개 주제는 재선별 대기(PENDING 905)

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-07 12:39:20 +09:00

2.2 KiB

kind, slug, title, topic, project, status, sourceRevision, rootTreeNode, evidenceCapturedOn, assets, evidence, source, module
kind slug title topic project status sourceRevision rootTreeNode evidenceCapturedOn assets evidence source module
CONCEPT messaging-outbox-jdbc-postgresql-c02 starter가 만들지 않는 셋은 애플리케이션이 직접 등록해야 한다 transaction-and-consistency-models clean-architecture-backend-template 게시 전 21234e38cdb9a926cbc92bb97a2aee2e4a7d2916 concept:messaging-outbox-jdbc-postgresql-c02 2026-09-01
key file
messaging-outbox-jdbc-postgresql-c02 ../../../final/evidence/rendered/messaging-outbox-jdbc-postgresql-c02.svg
../../../final/evidence/raw/messaging-outbox-jdbc-postgresql-c02.txt
원본 분석 절은 final/document.md#a19-messaging-outbox-jdbc-postgresql#L102 이다.
messaging-outbox-jdbc-postgresql

starter가 만들지 않는 셋은 애플리케이션이 직접 등록해야 한다

JdbcOutboxRepository, OutboxEnvelopeFactory, JdbcAdminOperationJournal 셋은 starter가 만들지 않는다. 애플리케이션이 DataSource/ProducerId를 알고 직접 등록해야 한다.

본문

testcontainers 주석이 이 리프의 성격을 요약한다 — "신뢰성 패턴은 트랜잭션 경계와 유일성 제약에 대한 주장이고, 그것을 결판낼 수 있는 것은 실제 데이터베이스뿐이다." 그리고 그 레인이 실제로 돈다(§10).

JdbcOutboxRepository 참조 위치

:::evidence key="messaging-outbox-jdbc-postgresql-c02" alt="코드베이스에서 JdbcOutboxRepository 를 검색한 출력 5줄. 이 기록이 세는 참조가 그 출력에 그대로 보인다." caption="JdbcOutboxRepository 코드베이스 검색 — 5줄 · exit 0" zoom="true" :::

starter가 만들지 않는 셋

JdbcOutboxRepository, OutboxEnvelopeFactory, JdbcAdminOperationJournal(EVD-312). 셋 다 애플리케이션이 DataSource/ProducerId 를 알고 직접 등록해야 한다.

기본 저널이 프로덕션에서 거부되는 이유

AdminOperationJournal 의 기본값은 InMemoryAdminOperationJournal 이며, 프로덕션 프로파일에서는 MessagingAdminDurabilityValidator 가 그것을 거부한다(final/document.md#a19-messaging-admin-runtime §4.4 참조).