我有一个名为" Customer_Service"的Java Web服务。它利用了一个名为" Customer"作为一种类型。您可以添加"客户"使用" Customer_Service"对象到数据库。在客户端,我无法在"客户"中调用某种方法。除此方法外,所有其他方法都可以正常工作。以下是我的Customer类的外观。
public class Customer {
private int customerId;
private String dob;
public int getCustomerId() {
return customerId;
}
public void setCustomerId(int customerId) {
this.customerId = customerId;
}
public String getDob() {
return dob;
}
// this method cannot be accessed by client
public void setDob(String dob) {
this.dob = dob;
}
}
答案 0 :(得分:1)
您可能正在使用过时的类运行应用程序。尝试完全清理和构建,看看会发生什么。如果它不起作用,我的建议是重新创建整个项目。这将重新创建任何断开的连接。