gpt4 book ai didi

java - vaadin表容器并发修改

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

在我基于 vaadin 的网络应用程序中,我有以下两个类。在 MyTable 类中,realTimeUpdate 方法每秒持续更新表值。同时,从用户操作中调用 method1 进行表行编辑。当用户操作调用方法 1 时,会发生“并发修改异常”。我可以针对此问题应用什么最佳解决方案?

public class MyView extends CustomComponent implements View{
private IndexedContainer container = new IndexedContainer();
private Table table = new Table();
public MyView(){
......
table.setContainerDataSource(container);
}
}

public class MyTable
{
public void method1(Table table)
{
Container container = table.getContainerDataSource();
Iterator<?> iterator = container.getItemIds().iterator();
while (iterator.hasNext())
{
Object itemId = iterator.next();
...... some code to modify table row
}
}

public void realTimeUpdate(Table table)
{
Container container = table.getContainerDataSource();
Iterator<?> iterator = container.getItemIds().iterator();
while (iterator.hasNext())
{
Object itemId = iterator.next();
...... some code to update table values
}
}
}

最佳答案

Vaadin 希望对其的访问被正确锁定。因此,当您有外部线程修改 Vaadin 组件或其他 Vaadin 相关类时,您必须使用 UI.access 来确保锁定。按如下方式编写您的 realTimeUpdate 方法:

public void realTimeUpdate(Table table) {
table.getUI().access(new Runnable() {
@Override
public void run() {
Container container = table.getContainerDataSource();
Iterator<?> iterator = container.getItemIds().iterator();
while (iterator.hasNext())
{
Object itemId = iterator.next();
...... some code to update table values
}
}
});
}

关于java - vaadin表容器并发修改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24065778/

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