我在 Java RMI 中开发了一个简单的不信任系统,现在我必须将其更改为 Web 服务。我的数据结构有问题:
Hashtable<String, ArrayList<Records>> recordsTable;
它没有正确序列化/更新我的对象。
我不知道如何改变我的数据结构来克服这样的问题?
[已编辑]
为简单起见,假设我有这个数据结构:
Hashtable<String, Integer> store = new Hashtable<String, Integer>();
我有一个发布的 buy() 和 display() 服务。最初我店里有 100 个苹果,所以当我购买() 10 个苹果时,它会打印出 90 个苹果的结果。但是当我稍后调用显示时,它将打印 100 个苹果。
所以有一个序列化问题,我不知道如何解决。
public class StoreServer{
Hashtable<String, Integer> store= new Hashtable<String, Integer>();
public StoreServer()
{
store.put("Coffee", 20);
store.put("Apple", 100);
store.put("Banana", 50);
display();
}
public String buy(String item, int quantity)
{
if(store.containsKey(item))
{
int oldQuantity = store.get(item);
int newQuantity;
if(oldQuantity-quantity>=0)
{
newQuantity= oldQuantity -quantity;
store.put(item, newQuantity);
return quantity+" "+item+" were successfully purchased!\n" +
("1. Coffee: "+store.get("Coffee")+"\n")+
("2. Apples: "+store.get("Apple")+"\n")+
("3. Bananas: "+store.get("Banana")+"\n")+
("---------------------------\n");
}
else
{
return "error with your purchase";
}
}
else
{
return "error with your purchase";
}
}
public void display()
{
System.out.println("------Store Inventory-----");
System.out.println("1. Coffee: "+store.get("Coffee"));
System.out.println("2. Apples: "+store.get("Apple"));
System.out.println("3. Bananas: "+store.get("Banana"));
System.out.println("---------------------------");
}}