我有一个WCF服务,从数据库返回1000个记录到客户端。我有一个ASP.NET的WCF客户端(我已经在asp.net的Web应用程序项目中添加服务引用,以消耗WCF)。
我运行客户端应用程序时收到以下消息:
传入消息的最大消息大小限额(65536)已被超出。要增加配额,请在适当的绑定元素上使用MaxReceivedMessageSize属性。
任何帮助?如何增加邮件大小限额?
只需按照如下所示:
public class Deletable implements Cloneable{
private String str;
public Deletable(){
}
public void setStr(String str){
this.str = str;
}
public void display(){
System.out.println("The String is "+str);
}
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
}
无论你想获得另一个对象,简单地执行克隆。例如:
Deletable del = new Deletable();
Deletable delTemp = (Deletable ) del.clone(); // this line will return you an independent
// object, the changes made to this object will
// not be reflected to other object
创建一个拷贝构造函数:
class DummyBean {
private String dummy;
public DummyBean(DummyBean another) {
this.dummy = another.dummy; // you can access
}
}
每个对象都有一个克隆方法可以用来复制对象,但最好不要使用它。