gpt4 book ai didi

java - 更改 ServletContext 中 ArrayList 中的对象

转载 作者:行者123 更新时间:2023-11-30 03:50:39 25 4
gpt4 key购买 nike

我有一个ArrayList<Client> allClientsServletContextallClientsClient包含 ArrayList<Car> allCars .

如果我这样做,我想知道的是:

allClients = (ArrayList<Client>) getServletContext.getAttribute("allClients");
Client client = allClients.get(0);
Car newCar = new Car("Audi");
client.addCar(newCar);

我必须输入allClients吗?回到ServletContext

最佳答案

Do i have to put allClients back in the ServletContext?

正是如此。你需要把它放回去。否则属性值保持与之前相同。

对集合进行更改后,您需要使用修改后的值覆盖旧集合。

关于java - 更改 ServletContext 中 ArrayList 中的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24554755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com