我在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。可能是什么原因?