開始行: * キーワード [#j3b2be59] - リトライ - Kotlin - spring-retry * したいこと [#ee51f771] Kotlinでspring-retryを使ってリトライ処理したい(ができな... * どうやって [#b42d14e2] @Component @EnableRetry class SomeComponent { @Retryable(value = [UserException::class]) @Throws(UserException::class) // ポイント fun doSomething(param: UserParam) { ... } @Recover fun recover(e: UserException, param: UserParam) { ..... } * ちなみに [#i8b272cb] Kotlinでは@ThrowsをつけないとUndeclaredThrowableException... Cannot locate recovery method; nested exception is java.... * 参考 [#i817a9d6] - [[Kotlinで期待していない例外UndeclaredThrowableExceptio... 終了行: * キーワード [#j3b2be59] - リトライ - Kotlin - spring-retry * したいこと [#ee51f771] Kotlinでspring-retryを使ってリトライ処理したい(ができな... * どうやって [#b42d14e2] @Component @EnableRetry class SomeComponent { @Retryable(value = [UserException::class]) @Throws(UserException::class) // ポイント fun doSomething(param: UserParam) { ... } @Recover fun recover(e: UserException, param: UserParam) { ..... } * ちなみに [#i8b272cb] Kotlinでは@ThrowsをつけないとUndeclaredThrowableException... Cannot locate recovery method; nested exception is java.... * 参考 [#i817a9d6] - [[Kotlinで期待していない例外UndeclaredThrowableExceptio... ページ名: