docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ tags: [SoftwareEngineering, Patterns, DI, Decoupling]
last_reinforced: 2026-04-20
---
# [[Dependency-Injection]] (의존성 주입)
# [[Dependency-Injection|Dependency-Injection]] (의존성 주입)
## 📌 한 줄 통찰 (The Karpathy Summary)
> "직접 사러 가지 말고, 배달받아 써라." 객체가 필요한 의존 객체를 스스로 생성하지 않고, 외부에서 주입받음으로써 코드 간의 결합도를 낮추고 테스트 용이성을 극대화하는 디자인 패턴이다.
@@ -25,5 +25,5 @@ last_reinforced: 2026-04-20
- DI 프레임워크(Spring, NestJS 등)를 과도하게 사용하면 의존성 그래프가 너무 복잡해져 런타임 성능에 영향을 주거나 디버깅이 어려워지는 'DI 지옥'에 빠질 수 있다. 객체 간의 관계가 명확할 때는 과도한 추상화보다 직관적인 구성을 고려해야 한다.
## 🔗 지식 연결 (Graph)
- Related: [[Dependency-Inversion-Principle]] , Inversion-of-Control (IoC)
- Related: [[Dependency-Inversion-Principle|Dependency-Inversion-Principle]] , Inversion-of-Control (IoC)
- Pattern: Factory-Method-Pattern