Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要求,我必须创建一些像 10 这样的域对象并将它们放入队列中。域对象可能使用其他对象(使用弹簧加载)。
实现这一目标的最佳方法是什么?我应该使用 new 运算符实例化域对象并填充队列,还是有一个弹簧功能来实现这一点。
谢谢 :-)
您可以通过 Spring 创建这些域对象并通过 Java 源代码中的 ApplicationContext 获取它们
您可以创建一些QueuedDomainObject没有任何方法的接口,在每个域对象中实现它并将它们放入队列中
QueuedDomainObject
@Inject List<QueuedDomainObject> queue;