kotlin-spring-proxy-compatibility

작성자: kotlin

Diagnose and prevent Kotlin plus Spring proxy failures around `@Transactional`, `@Cacheable`, `@Async`, method security, retry, configuration proxies, and JPA…

npx skills add https://github.com/kotlin/kotlin-backend-agent-skills --skill kotlin-spring-proxy-compatibility

Kotlin Spring Proxy Compatibility

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

Mission

Explain exactly why Spring interception does or does not happen for Kotlin code, then propose the safest fix. Focus on runtime behavior, not on code that merely looks annotated.

Read These Inputs

  • The class and method carrying @Transactional, @Cacheable, @Async, @Retryable, security annotations, or other proxy-triggering annotations.
  • The call site. Determine whether the method is called through another bean or through this.
  • Build files. Verify kotlin("plugin.spring"), kotlin("plugin.jpa"), or any custom allOpen and noArg configuration.
  • Whether the bean is proxied through an interface or through CGLIB class proxies.
  • For persistence problems, read the entity class shape and JPA plugin setup.

Diagnose In This Order

  1. Verify whether a proxy should exist at all.
  2. Verify whether the call crosses the proxy boundary.
  3. Verify whether the class or method is proxyable.
  4. Verify whether the annotation is placed on the method Spring actually intercepts.
  5. Verify whether build-time plugins opened the relevant classes.
  6. Verify whether the bug is actually transactional semantics, not proxy creation.

Core Checks

  • Check for self-invocation. A method calling another annotated method in the same class bypasses the proxy.
  • Check whether the target class or method is effectively final for the chosen proxy strategy.
  • Check whether a JDK proxy is used. If so, interception works through interface methods, not arbitrary class methods.
  • Check whether the annotated method is private or otherwise non-interceptable.
  • Check whether @Configuration classes, @Service classes, and JPA entities rely on the correct Kotlin compiler plugins.
  • Check whether the symptom comes from coroutines or async boundaries rather than proxy absence.

Preferred Fixes

Prefer fixes in this order:

  1. Enable the correct Kotlin compiler plugin in Gradle.
  2. Move the intercepted method behind a real Spring bean boundary.
  3. Adjust interface or proxy strategy only if the current strategy is incompatible.
  4. Refactor responsibilities so that external callers cross the proxy naturally.
  5. Only as a last resort, inject the proxied bean into itself or use AopContext, and explain why this is a compromise.

Advanced Interception Traps

  • @PostConstruct, constructors, and init blocks run on the target object before ordinary proxy interception can help. Advice that depends on transactions, caching, security, or retries will not rescue initialization logic.
  • @Async changes threads. Transaction, security, MDC, and request context do not automatically flow the same way they do in synchronous code.
  • @Retryable, @Transactional, @Cacheable, and method security can stack. Advisor ordering changes behavior, especially when retries and transactions combine.
  • @TransactionalEventListener depends on transaction phase. If no transaction exists, the listener may never fire or may fire immediately depending on fallback behavior.
  • @Configuration(proxyBeanMethods = false) disables configuration-class method interception. Treat this as a performance and semantics choice, not a cosmetic flag.
  • Interface default methods, non-public methods, and methods reached only from internal helper paths may compile cleanly while still missing interception at runtime.
  • In coroutine and reactive flows, transaction and security propagation depend on the underlying stack and context propagation model. A proxy can exist while context still does not flow the way the author expects.

Expert Heuristics

  • If the symptom is "annotation present but behavior absent," first ask whether the relevant call crossed a bean boundary. This catches more real bugs than checking open alone.
  • If the team wants a local helper method to stay private, do not force proxy semantics onto it. Move the transactional or cache boundary outward instead.
  • For caching and security, verify key computation and authorization point as separate concerns from proxy presence.
  • For JPA entities and configuration classes, distinguish opening for framework mechanics from opening for general extensibility. The former is usually acceptable; the latter may not be.

Kotlin-Specific Rules

  • Prefer compiler plugins over manually marking entire class hierarchies as open.
  • Do not generate JPA entities as data class.
  • Do not assume annotations on private methods will work because they compile.
  • Explain the difference between Kotlin source semantics and Spring runtime semantics.
  • If migrating Java to Kotlin, re-check every proxy-reliant class after translation.

Output Contract

Return these sections:

  • Broken mechanism: what Spring feature is expected to intercept the call.
  • Why it failed: one concrete runtime reason with code evidence.
  • Minimal fix: the smallest change that restores interception.
  • Safer design option: only if the current structure invites future proxy bugs.
  • Verification: how to prove the annotation now takes effect.

Guardrails

  • Do not suggest making every class open manually without first checking compiler plugins.
  • Do not confuse proxy absence with wrong propagation, wrong cache key, or other business logic issues.
  • Do not recommend data class entities or blanket allOpen for unrelated code.
  • Do not leave self-invocation unexplained. It is one of the most common hidden causes.

Quality Bar

A good run of this skill makes the proxy model explicit and the fix easy to verify. A bad run tells the user to add annotations or open keywords without proving why interception 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