忽略JPA查询超时参数但@Transaction注释有效

问题描述 投票:3回答:1

我希望我的Spring Boot应用程序对Postgres数据库进行的JPA查询在5秒后超时。

我创建了这个20秒的查询来测试超时:

@Query(value = "select count(*) from pg_sleep(20)", nativeQuery = true)
int slowQuery();

我在application.config中设置了以下属性:

spring.jpa.properties.javax.persistence.query.timeout=3000
javax.persistence.query.timeout=5000

但是查询在3秒或5秒后不会超时(执行仍需要20秒)。

奇怪的是,如果我用slowQuery注释@Transactional(timeout = 10),它会在10s左右后超时。

我宁愿不注释每个查询。我正在使用JPA 2.0和Tomcat连接池。

通过在应用程序属性文件中设置超时来使超时工作需要什么魔力?

java spring jpa timeout jpa-2.0
1个回答
4
投票

要使超时通用,在JpaConfiguration中,当您声明PlatformTransactionManager Bean时,可以设置事务的默认超时:

@Bean
public PlatformTransactionManager transactionManager() throws Exception {
    JpaTransactionManager txManager = new JpaTransactionManager();
    txManager.setEntityManagerFactory(entityManagerFactory().getObject());
    txManager.setDataSource(this.dataSource);
    txManager.setDefaultTimeout(10); //Put 10 seconds timeout
    return txManager;
}

PlatformTransactionManager继承包含该方法的AbstractPlatformTransactionManager:

    /**
     * Specify the default timeout that this transaction manager should apply
     * if there is no timeout specified at the transaction level, in seconds.
     * <p>Default is the underlying transaction infrastructure's default timeout,
     * e.g. typically 30 seconds in case of a JTA provider, indicated by the
     * {@code TransactionDefinition.TIMEOUT_DEFAULT} value.
     * @see org.springframework.transaction.TransactionDefinition#TIMEOUT_DEFAULT
     */
    public final void setDefaultTimeout(int defaultTimeout) {
        if (defaultTimeout < TransactionDefinition.TIMEOUT_DEFAULT) {
            throw new InvalidTimeoutException("Invalid default timeout", defaultTimeout);
        }
        this.defaultTimeout = defaultTimeout;
    }
© www.soinside.com 2019 - 2024. All rights reserved.