spring-context-di-reasoning

작성자: kotlin

Spring 애플리케이션 컨텍스트 시작 실패, 빈 그래프 문제, 누락되거나 중복된 빈, 순환 의존성, 조건부 자동 구성 등을 진단합니다.

npx skills add https://github.com/kotlin/kotlin-backend-agent-skills --skill spring-context-di-reasoning

Spring Context DI Reasoning

Source mapping: Tier 1 critical skill derived from Kotlin_Spring_Developer_Pipeline.md (SK-02).

Mission

Reconstruct why the Spring container made a specific decision and propose the narrowest fix that restores correct wiring. Assume the visible exception is often a wrapper, not the real cause.

Collect Evidence First

  • Read the full exception chain, not only the top exception.
  • Read the startup log lines around the first failure and around any Caused by: entries.
  • Read the relevant @Configuration, component classes, @Bean methods, @ConfigurationProperties, and active profiles.
  • Read the build context if it is not already known. Reuse output from project-context-ingestion when available.
  • If a condition evaluation report or auto-configuration report exists, use it.

Reconstruct The Bean Path

  • Identify the bean that failed first.
  • Walk constructor arguments, method parameters, and factory methods to build the dependency chain.
  • Separate symptom from cause:
    • BeanCreationException is usually a wrapper.
    • UnsatisfiedDependencyException usually points to a missing or ambiguous dependency one hop deeper.
    • property binding failures often surface as bean creation failures.
  • Record whether the failing bean is user-defined, auto-configured, conditional, profile-specific, or imported from another module.

Diagnose By Category

Check these categories in order:

  1. Missing bean:
    • package not scanned
    • bean class not annotated
    • @Bean method not imported
    • wrong module dependency
  2. Ambiguous bean:
    • multiple beans of same type
    • missing @Qualifier
    • missing @Primary
  3. Conditional mismatch:
    • @Profile not active
    • @ConditionalOnProperty false or missing
    • classpath condition not satisfied
  4. Configuration binding failure:
    • wrong prefix
    • missing required property
    • invalid type conversion
  5. Circular dependency:
    • constructor cycle
    • configuration class cycle
    • bean factory method recursion
  6. Auto-configuration collision:
    • user bean unintentionally overrides or blocks auto-config
    • excluded auto-config removes a dependency chain
  7. Lifecycle or initialization side effects:
    • bean does work too early in @PostConstruct
    • external system call during initialization

Fix Hierarchy

Prefer fixes in this order:

  1. Correct the missing import, annotation, qualifier, or profile.
  2. Correct the configuration property source or binding model.
  3. Narrow the scan or import boundary to the intended package or module.
  4. Resolve ambiguity with @Qualifier or @Primary.
  5. Refactor an actual cycle into a cleaner dependency direction.
  6. Use @Lazy only as a deliberate escape hatch, and explain the tradeoff.

Advanced Container Traps

  • Check whether a @Configuration class uses proxyBeanMethods = false. In that mode, direct calls between @Bean methods do not return the managed singleton unless dependencies are expressed through method parameters.
  • Check whether the missing bean is actually a FactoryBean product versus the factory itself.
  • Check generic type narrowing. Foo<Bar> and Foo<Baz> may both exist while raw-type reasoning makes the graph look ambiguous or missing.
  • Check collection and map injection semantics. List<BeanType> ordering, bean names, and conditional registration can hide the real cause.
  • Check whether ObjectProvider<T>, Optional<T>, or lazy lookup is masking a missing dependency until first use.
  • Check whether @ConditionalOnMissingBean, @ConditionalOnSingleCandidate, or ordering annotations caused an auto-configuration branch to back off unexpectedly.
  • Check for environment post-processors, imported configs, or test slices that change the bean graph compared with main runtime.
  • If the project uses AOT or native image workflows, check whether reflection or generated context metadata, not the source annotations alone, is the true source of failure.

Expert Heuristics

  • Prefer following the bean creation path from the first failing constructor argument over scanning all annotations in the module.
  • If one fix would "make startup pass" but leaves the graph semantically wrong, reject it and explain the deeper issue.
  • When the problem surfaces only in tests, compare the test slice graph with the production graph before changing production code.
  • If a bean exists but the wrong implementation is selected, explain the selection mechanism, not only the missing qualifier.
  • If property binding and bean creation both fail, fix property binding first. Bean graph symptoms often disappear afterward.

Output Contract

Return these sections:

  • Diagnosis: the most probable root cause in one or two sentences.
  • Evidence: the exact lines, bean path, condition, or configuration fact that supports the diagnosis.
  • Minimal fix: the smallest code or config change that addresses the root cause.
  • Alternatives: only if there is more than one legitimate fix.
  • Verification: how to confirm the fix, such as ./gradlew test, bootRun, or a specific startup assertion.

Guardrails

  • Do not suggest @ComponentScan("*"), giant scanBasePackages, or other "scan the world" fixes.
  • Do not guess bean names or qualifiers that are not present in the code.
  • Do not recommend disabling auto-configuration broadly to silence a symptom.
  • Do not use @Lazy as the default answer to cycles.
  • Do not ignore profiles, conditions, or property sources when explaining bean behavior.

Common Spring-Specific Checks

  • Verify @EnableConfigurationProperties or equivalent registration if properties beans are missing.
  • Verify whether the failing type is an interface with multiple implementations.
  • Verify whether a bean lives in another Gradle module that is not on the runtime classpath.
  • Verify whether a @TestConfiguration or test slice changes the graph only in tests.
  • Verify whether the issue is really a classpath problem disguised as a bean problem.

Quality Bar

A good run of this skill explains why Spring made the wrong decision and gives a minimal, testable fix. A bad run waves at annotations, suggests broad scans, or ignores the dependency chain that actually failed.

kotlin의 다른 스킬

ci-cd-containerization-advisor
kotlin
재현 가능한 빌드, 이미지 및 배포 파이프라인을 설계합니다. Kotlin 및 Spring 애플리케이션을 대상으로 하며, CI 검증, 계층형 컨테이너, 롤아웃 안전성 등을 포함합니다.
official
configuration-properties-profiles-kotlin-safe
kotlin
Design and diagnose Spring configuration, profiles, and `@ConfigurationProperties` binding for Kotlin applications. Use when property binding fails,…
official
dependency-conflict-resolver
kotlin
Diagnose and resolve Gradle and Spring classpath conflicts, version drift, and binary incompatibilities in Kotlin applications. Use when `NoSuchMethodError`,…
official
domain-decomposition-api-design-advisor
kotlin
구현을 시작하기 전에 비즈니스 범위를 경계 컨텍스트, 모듈 또는 서비스 경계, 워크플로우, API 계약으로 분해합니다. 새로운 것을 설계할 때 사용하세요.
official
error-model-validation-architect
kotlin
Kotlin과 Spring 서비스를 위한 일관된 API 검증 및 오류 처리 동작을 설계하고 구현합니다. 오류 페이로드를 정의하거나 프레임워크를 매핑할 때 사용합니다.
official
gradle-kotlin-dsl-doctor
kotlin
Generate, debug, and repair Kotlin + Spring Gradle builds with minimal, compatible changes. Use when `build.gradle.kts` or `settings.gradle.kts` is failing,…
official
integration-resilience-engineer
kotlin
탄력적인 HTTP, 메시징, 예약 통합을 Kotlin 및 Spring 서비스용으로 설계하며 명시적인 타임아웃 예산, 재시도, 멱등성, 서킷 브레이커를 포함합니다.
official
jackson-kotlin-serialization-specialist
kotlin
Kotlin과 Jackson을 사용하는 Spring 애플리케이션에서 JSON 직렬화 및 역직렬화 동작을 진단하고 설계합니다. DTO 역직렬화 실패 시, 기본값…
official