Skip to content

Instantly share code, notes, and snippets.

@HVHO
Created December 5, 2021 10:02
Show Gist options
  • Save HVHO/ad928339b11b16b733506daf0769a872 to your computer and use it in GitHub Desktop.
Save HVHO/ad928339b11b16b733506daf0769a872 to your computer and use it in GitHub Desktop.
@Service
class RetryableService {
@Autowired
private lateinit var retryTemplate: RetryTemplate
@Retryable
fun doWithRetry() : Unit {
randomFail()
}
private fun randomFail(): Unit {
if (random() > 0.1) {
println("failed!")
throw RuntimeException("failed!")
} else {
println("success!")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment