私はいくつかの GWT Web アプリケーションを開発しました。最新のものは、別のものを少し修正したものです。最新のものを除いて、それらはすべてうまく機能します。例外は次のとおりです。
The response could not be deserialized
Hibernate と GWT の間で Hibernate と Data Transfer Objects を使用しています。各 DTO は java.io.Serializable インターフェイスを実装します。前に言ったように、他のアプリケーションではうまく機能します。誰かがこのエラーで私を助けてくれますか? 何が原因かわかりません。
私のHibernateオブジェクトコードは次のとおりです。
public List<AttributeDTO> getAttributes(){
String sql = "from Attribute where (select max(tDate) from Attribute)-tDate < '0 days 00:05'";
List<Attribute> attributes = new ArrayList<Attribute>(DatabaseManager.createQuery(sql));
List<AttributeDTO> attributeDTOs = new ArrayList<AttributeDTO>(attributes != null ? attributes.size() : 0);
if (attributes != null) {
for (Attribute attribute : attributes) {
String date = format.format(attribute.gettDate());
attributeDTOs.add(new AttributeDTO(attribute.getiAttrId(),attribute.getsName(),attribute.getsValue(),date,attribute.getiDeviceId(),attribute.getsUnits(),new ApplicationFieldDTO()));
}
}
return attributeDTOs;
}
そして AttributeDTO は次のとおりです。
public class AttributeDTO implements Serializable {
private static final long serialVersionUID = 1L;
private int iAttrId;
private String name;
private String value;
private String date;
private String units;
private int iDeviceId;
private ApplicationFieldDTO appField;
public AttributeDTO() {}
public AttributeDTO(int attrId, String name, String value, String date, int deviceId, String units, ApplicationFieldDTO appField) {
this.iAttrId = attrId;
this.name = name;
this.value = value;
this.date = date;
this.iDeviceId = deviceId;
this.units = units;
this.appField = appField;
}
}
GWT からは、AttributeDTO のリストを返す getAttributes() メソッドを呼び出します。
ありがとう!!!