Files
document-haness/docs/clean-architecture-backend-template/final/evidence/meta/analysis-finding-a05-f031.json
T
DongHyeonkaandClaude Opus 5 b2963105a8 docs(keycloak-session-store): import the session-storage lab as a new project
The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.

Follows the import procedure in README.md.

  source/     the originating repository verbatim — 78 documents, 28 SVGs,
              8 manifests, plus .source-revision recording the commit
  final/      the SSOT
    document.md   729 lines written from the 29 experiment documents, not
                  concatenated: what was predicted, what was measured, and
                  where the measurement itself was wrong
    evidence/raw    125 outputs, flattened to <experiment>__<file> because
                    the originals collided (01-baseline.txt appeared three
                    times) and the audit only globs the top level
    evidence/meta   one per raw file; command and exitCode are null and the
                    README says why rather than inventing them
    evidence/browser  22 captures
    assets/       three diagrams through techviz
    .techviz/     their VizSpecs

A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.

Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.

verify-pipeline.py passes. audit-records.py reports no issues.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-04 22:51:59 +09:00

15 lines
3.8 KiB
JSON

{
"assetKey": "analysis-finding-a05-f031",
"kind": "terminal",
"command": "#!/bin/bash\nset -euo pipefail\ncd /shared/codebase/clean-architecture-backend-template\n. /tmp/lib.sh\nV=src/adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/config/PersistenceVendorSettings.java\nA=src/app-bootstrap/src/main/java/dev/caskeleton/bootstrap/autoconfigure/persistencejpa/PersistenceJpaRootAutoConfiguration.java\nJ=src/adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/config/JpaAdapterComponentsConfig.java\nO=src/adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/outbox/OutboxStoreAdapter.java\nD=src/app-bootstrap/src/main/java/dev/caskeleton/bootstrap/autoconfigure/jpa/JpaDataSourceProfileValidator.java\nC=src/app-bootstrap/src/main/java/dev/caskeleton/bootstrap/CaSkeletonApplication.java\nS=src/sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/SamplePortfolioApplication.java\nT=$(git ls-files -- '**/PersistenceVendorSelectionTest.java')\nfor f in \"$V\" \"$A\" \"$J\" \"$O\" \"$D\" \"$C\" \"$S\" \"$T\"; do test -f \"$f\"; done\n\necho \"# 그 타입이 약속하는 것\"\nat \"$V\" 1 35 PersistenceVendorSettings.java\n\necho\necho \"# 그 타입을 빈으로 등록하는 자리\"\nprintf ' EnableConfigurationProperties 가 이 타입을 담은 main 줄 : %s 개\\n' \\\n \"$({ git grep -nE 'EnableConfigurationProperties.*PersistenceVendorSettings' -- 'src/**/*.java' || true; } | { grep -c '/src/main/' || true; })\"\necho \" ConfigurationPropertiesScan 애너테이션이 붙은 main 자리 (주석 제외) :\"\n{ git grep -nE '^\\s*@ConfigurationPropertiesScan' -- 'src/**/*.java' || true; } \\\n | { grep '/src/main/' || true; } | sed -E 's#^src/(.*)/src/main/java/.*/([A-Za-z0-9_]+\\.java):([0-9]+): *# \\1 · \\2:\\3 #'\necho \" 이 타입이 나오는 자리 전부 :\"\nhits 'PersistenceVendorSettings' 'src/**/*.java' | mod\n\necho\necho \"# 두 애플리케이션의 스캔 범위가 다르다\"\nat \"$C\" 58 80 CaSkeletonApplication.java\necho\nat \"$S\" 44 48 SamplePortfolioApplication.java\n{ grep -n 'persistence-jpa' src/sample-portfolio/build.gradle || true; } \\\n | sed -E 's#^([0-9]+): *# sample-portfolio/build.gradle:\\1 #'\n\necho\necho \"# 합성 루트가 그 자리에서 무엇을 하는가\"\nat \"$A\" 56 70 PersistenceJpaRootAutoConfiguration.java\nat \"$A\" 85 115 PersistenceJpaRootAutoConfiguration.java\n\necho\necho \"# 그 불린을 받는 쪽\"\nat \"$D\" 44 60 JpaDataSourceProfileValidator.java\n\necho\necho \"# 오타 난 벤더가 무엇을 무너뜨리는가 — 조립 경로\"\nat \"$J\" 55 68 JpaAdapterComponentsConfig.java\nat \"$O\" 20 33 OutboxStoreAdapter.java\n\necho\necho \"# 그 값을 실제로 넣고 돌린 결과\"\necho \" 프로브 : /tmp/probe-vendor/VendorProbe.java · ApplicationContextRunner 세 조립\"\nat /tmp/probe-vendor/VendorProbe.java 36 47 VendorProbe.java\nat /tmp/probe-vendor/VendorProbe.java 74 81 VendorProbe.java\necho\n( cd /tmp/probe-vendor \\\n && javac -nowarn -encoding UTF-8 -cp \"$(cat cp.txt)\" -d out VendorProbe.java \\\n && java -Dstdout.encoding=UTF-8 -Dlogback.configurationFile=/tmp/probe-vendor/logback.xml \\\n -cp \"out:$(cat cp.txt)\" VendorProbe )\n\necho\necho \"# 시험은 그 타입을 켜고 돌린다\"\nat \"$T\" 28 62 PersistenceVendorSelectionTest.java\nat \"$T\" 88 94 PersistenceVendorSelectionTest.java\n",
"cwd": "/shared/codebase/clean-architecture-backend-template",
"exitCode": 0,
"executedAt": "2026-09-04T06:53:43+00:00",
"sourceRevision": "21234e38cdb9a926cbc92bb97a2aee2e4a7d2916",
"raw": "evidence/raw/analysis-finding-a05-f031.txt",
"svg": "evidence/rendered/analysis-finding-a05-f031.svg",
"rawSha256": "d4cda0b020ab26148d5d6b66e4294d40c388c273508236d8dd129bbb598d4ba6",
"lines": 279,
"redaction": "없음"
}