我在类中有一个静态方法,如下所示:
class A {
public static addInfo(Temp t) {
// .....some calculation code here....
// .....then data from Temp object t is added to database.
}
}
Temp 是一个实体类。
我有一个动作,我称之为这个静态addInfo()
方法:
public class Test implements ServletRequestAware, ServletResponseAware {
Temp t = new Temp();
//.....add data to Temp Object.....
A.addInfo(t);
}
这里 Temp 对象包含每个请求的唯一数据。但有时同一个请求在数据库中添加了不止一次。可能是什么原因?