我有一个有一个集合的类:
public class Foo
{
@Inject
private BarManager barManager;
@Getter(lazy = true)
private final List<Bar> bars = barManager.getAll();
public void addBar(Bar bar)
{
bars.add(bar);
}
}
但是我不能在List
. 原因是该属性是一个AtomicReference
. 警告/错误是:
The method add(Employee) is undefined for the type AtomicReference<AtomicReference<List<Employee>>>
如何对集合执行添加/删除操作?