天天看点

Spring事务超时时间可能存在的错误认识

1、先看代码

1.1、spring-config.xml

Spring事务超时时间可能存在的错误认识

<bean id="datasource" class="org.springframework.jdbc.datasource.drivermanagerdatasource">  

    <property name="driverclassname" value="com.mysql.jdbc.driver"/>  

    <property name="url" value="jdbc:mysql://localhost:3306/test?autoreconnect=true&useunicode=true&characterencoding=utf-8"/>  

    <property name="username" value="root"/>  

    <property name="password" value=""/>  

</bean>  

<bean id="txmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager">  

    <property name="datasource" ref="datasource"/>  

1.2、测试用例

Spring事务超时时间可能存在的错误认识

@runwith(springjunit4classrunner.class)  

@contextconfiguration(locations = "classpath:spring-config.xml")  

@transactionconfiguration(transactionmanager = "txmanager", defaultrollback = false)  

@transactional(timeout = 2)  

public class timeout1test {  

    @autowired  

    private datasource ds;  

    @test  

    public void testtimeout() throws interruptedexception {  

        system.out.println(system.currenttimemillis());  

        jdbctemplate jdbctemplate = new jdbctemplate(ds);  

        jdbctemplate.execute(" update test set name = name || '1'");  

        thread.sleep(3000l);  

    }  

}  

我设置事务超时时间是2秒;但我事务肯定执行3秒以上;为什么没有起作用呢?  这其实是对spring实现的事务超时的错误认识。那首先分析下spring事务超时实现吧。

2、分析

2.1、在此我们分析下datasourcetransactionmanager;首先开启事物会调用其dobegin方法:

Spring事务超时时间可能存在的错误认识

…………  

int timeout = determinetimeout(definition);  

if (timeout != transactiondefinition.timeout_default) {  

    txobject.getconnectionholder().settimeoutinseconds(timeout);  

 其中determinetimeout用来获取我们设置的事务超时时间;然后设置到connectionholder对象上(其是resourceholder子类),接着看resourceholdersupport的settimeoutinseconds实现:

Spring事务超时时间可能存在的错误认识

public void settimeoutinseconds(int seconds) {  

    settimeoutinmillis(seconds * 1000);  

public void settimeoutinmillis(long millis) {  

    this.deadline = new date(system.currenttimemillis() + millis);  

大家可以看到,其会设置一个deadline时间;用来判断事务超时时间的;那什么时候调用呢?首先检查该类中的代码,会发现:

Spring事务超时时间可能存在的错误认识

public int gettimetoliveinseconds() {  

    double diff = ((double) gettimetoliveinmillis()) / 1000;  

    int secs = (int) math.ceil(diff);  

    checktransactiontimeout(secs <= 0);  

    return secs;  

public long gettimetoliveinmillis() throws transactiontimedoutexception{  

    if (this.deadline == null) {  

        throw new illegalstateexception("no timeout specified for this resource holder");  

    long timetolive = this.deadline.gettime() - system.currenttimemillis();  

    checktransactiontimeout(timetolive <= 0);  

    return timetolive;  

private void checktransactiontimeout(boolean deadlinereached) throws transactiontimedoutexception {  

    if (deadlinereached) {  

        setrollbackonly();  

        throw new transactiontimedoutexception("transaction timed out: deadline was " + this.deadline);  

会发现在调用gettimetoliveinseconds和gettimetoliveinmillis,会检查是否超时,如果超时设置事务回滚,并抛出transactiontimedoutexception异常。到此我们只要找到调用它们的位置就好了,那什么地方调用的它们呢? 最简单的办法使用如“intellij idea”中的“find usages”找到get***的使用地方;会发现:

datasourceutils.applytransactiontimeout会调用datasourceutils.applytimeout,datasourceutils.applytimeout代码如下:

Spring事务超时时间可能存在的错误认识

public static void applytimeout(statement stmt, datasource datasource, int timeout) throws sqlexception {  

    assert.notnull(stmt, "no statement specified");  

    assert.notnull(datasource, "no datasource specified");  

    connectionholder holder = (connectionholder) transactionsynchronizationmanager.getresource(datasource);  

    if (holder != null && holder.hastimeout()) {  

        // remaining transaction timeout overrides specified value.  

        stmt.setquerytimeout(holder.gettimetoliveinseconds());  

    else if (timeout > 0) {  

        // no current transaction timeout -> apply specified value.  

        stmt.setquerytimeout(timeout);  

其中其在stmt.setquerytimeout(holder.gettimetoliveinseconds());中会调用gettimetoliveinseconds,此时就会检查事务是否超时;

然后在jdbctemplate中,执行sql之前,会调用其applystatementsettings:其会调用datasourceutils.applytimeout(stmt, getdatasource(), getquerytimeout());设置超时时间;具体可以看其源码;

到此我们知道了在jdbctemplate拿到statement之后,执行之前会设置其querytimeout,具体意思参考javadoc:

3、结论

写道

spring事务超时 = 事务开始时到最后一个statement创建时时间 + 最后一个statement的执行时超时时间(即其querytimeout)。

4、因此

假设事务超时时间设置为2秒;假设sql执行时间为1秒;

如下调用是事务不超时的

Spring事务超时时间可能存在的错误认识

public void testtimeout() throws interruptedexception {  

    system.out.println(system.currenttimemillis());  

    jdbctemplate jdbctemplate = new jdbctemplate(ds);  

    jdbctemplate.execute(" update test set hobby = hobby || '1'");  

    thread.sleep(3000l);  

而如下事务超时是起作用的;

Spring事务超时时间可能存在的错误认识

因此,不要忽略应用中如远程调用产生的事务时间和这个事务时间是否对您的事务产生影响。

另外:

3、如果您用jdbc,但没有用jdbctemplate,直接使用datesourceutils进行事务控制时,要么自己设置statement的querytimeout超时时间,要么使用transactionawaredatasourceproxy,其在创建statement时会自动设置其querytimeout。

原文链接:[http://wely.iteye.com/blog/2311700]