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演算子を使用してDOmainオブジェクトをインスタンス化し、キューを埋める必要がありますか、それを実現するためのSpring機能がありますか。
ありがとう :-)
これらのドメイン オブジェクトを Spring で作成し、Java ソース コードの ApplicationContext を介して取得できます。
QueuedDomainObjectメソッドなしでいくつかのインターフェースを作成し、それをすべてのドメインオブジェクトに実装し、それらを使用してキューに入れることができます
QueuedDomainObject
@Inject List<QueuedDomainObject> queue;