我有一个重试建议应用在一个sftpOutboundGateway。我想看到在日志中每当重试发生。我如何启用它?有一些属性在应用程序。yml?
gblwokeq1#
既然你提到了application.yml,我猜你用的是Sping Boot 。事实上Spring Boot允许我们在配置属性中配置日志类别。下面是Spring Retry的配置属性:
application.yml
logging.level.org.springframework.retry:debug
接下来,您将看到RetryTemplate中的一些活动:
RetryTemplate
Retry: count= Checking for rethrow: count= Retry failed last attempt: count=
参见Sping Boot 文档:https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.logging.log-levels
1条答案
按热度按时间gblwokeq1#
既然你提到了
application.yml
,我猜你用的是Sping Boot 。事实上Spring Boot允许我们在配置属性中配置日志类别。下面是Spring Retry的配置属性:接下来,您将看到
RetryTemplate
中的一些活动:参见Sping Boot 文档:https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.logging.log-levels