在Google tutorial关于为移动应用程序创建后端之后,我能够为我的项目创建实体。在教程中它向"Generate Endpoint class for each Entity class"
然后"Generate a Cloud Endpoint client Library for the App Engine project by right-clicking the App Engine project, and selecting Google > Generate Cloud Endpoint Client"
说明。我按照这些说明操作后者。在我的Employee
实体类中,我有一个方法
public void addSales(Sales sale) {
getSales().add(sale);
}
但是当我尝试在我的活动中访问此方法时,它会显示"The method addSales() is undefined for the type Employee"
。相反,我给了setSales()
我没有在任何地方声明。我真的很困惑为什么会发生这种情况。