• v1.5.9-hotfix 8fa2450537

    FTMahringer released this 2026-05-09 14:41:45 +02:00 | 235 commits to main since this release

    @EnableAsync JDK Proxy Conflict Fix

    Backend failed to start after WebSocket and async were combined.

    Error:

    • ConversationWebSocketHandler injected as concrete class in WebSocketConfig
    • @EnableAsync created JDK dynamic proxy — type mismatch at injection
    • APPLICATION FAILED TO START

    Fix:

    • Changed @EnableAsync to @EnableAsync(proxyTargetClass = true)
    • Forces CGLIB proxies — concrete class injection works correctly

    Followup to v1.5.4-dev.

    Downloads