gpt4 book ai didi

java - JPA 存储库上的 Spring 重试

转载 作者:行者123 更新时间:2023-12-05 03:01:59 25 4
gpt4 key购买 nike

我是 spring 的新手,作为我项目实现的一部分,我应该在调用 JPA 存储库的服务方法上添加 spring 重试。代码如下所示

@Retryable(value = {Exception.class},maxAttempts = 1,backoff = @Backoff(300))
public Page<Account> findAllAccounts(AccountSearchRequest account, Pageable pageable) {
try {
return map(accountSearchRepository.findAll(account, pageable));
}catch (Exception e){
System.out.println("SQL EXCEPTION CAUGTH!!!!!!!!!");
}
return null;
}
@Recover
public void recover(Exception e){
System.out.println("!!!!!!!!!!!Failed to get connection!!!!!!");
}

数据库 : Postgresql,

应用:Java Spring Boot(公开 Rest API 以获取所有帐户)

HikariPool MaximumPoolSize ** : **1

Hikari ConnectionTimeout ** : **1000

JMeter 用于发送 10,000 API 请求。

问题:我能够看到 SQL EXCEPTION CAUGTH!!!!!!!!! 打印,但我认为重试不起作用,因为我没有看到恢复方法的打印。我错过了什么吗?

下面是gradle依赖

// https://mvnrepository.com/artifact/org.springframework.retry/spring-retry
compile group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.4.RELEASE'


// https://mvnrepository.com/artifact/org.springframework/spring-aspects
compile group: 'org.springframework', name: 'spring-aspects', version: '3.2.4.RELEASE'

// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop
compile group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.1.3.RELEASE'


// https://mvnrepository.com/artifact/org.springframework/spring-aop
compile group: 'org.springframework', name: 'spring-aop', version: '5.1.5.RELEASE'

最佳答案

感谢支持

我发现问题是 @Recover 方法的数据类型与 @Retryable 不同。Retry在上述场景下工作的条件

@Recover@Retryable 应该是公共(public)的并且具有相同的返回类型

关于java - JPA 存储库上的 Spring 重试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55300526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com