public class testDTO implements Serializable {
  private String str1;
  private String str2;  public testDTO() {
  }
  //为什么要用下面的构造函数复制
  public testDTO(testDTO dto) {
    this.str1 = dto.str1;
    this.str2 = dto.str2;
  }
...
}