Следующий код не повторяет. Что мне не хватает?Springboot @retryable not retrying
@EnableRetry
@SpringBootApplication
public class App implements CommandLineRunner
{
.........
.........
@Retryable()
ResponseEntity<String> authenticate(RestTemplate restTemplate, HttpEntity<MultiValueMap<String, String>> entity) throws Exception
{
System.out.println("try!");
throw new Exception();
//return restTemplate.exchange(auth_endpoint, HttpMethod.POST, entity, String.class);
}
Я добавил следующее к pom.xml.
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
Я также попытался предоставить различные комбинации аргументов @Retryable.
@Retryable(maxAttempts=10,value=Exception.class,[email protected](delay = 2000,multiplier=2))
Спасибо.
У меня такая же проблема. –