提交单个请求的两个请求

时间:2015-04-24 04:34:25

标签: java servlets struts2 static-methods struts-action

我在Class中有一个静态方法,如下所示:

class A {
    public static addInfo(Temp t) {
       // .....some calculation code here....
       // .....then data from Temp object t is added to database.
    }
}

Temp是一个Entity类。

我有一个Action,我称之为静态addInfo()方法:

public class Test implements ServletRequestAware, ServletResponseAware {
      Temp t = new Temp();
      //.....add data to Temp Object.....
      A.addInfo(t);
}

此处Temp对象包含每个请求的唯一数据。但有时在数据库中会多次添加相同的Request。可能是什么原因?

0 个答案:

没有答案