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.
Guiceを使用してアクセスできないクラスにプロパティを注入するにはどうすればよいですか?そのクラスを含む.jarにしかアクセスできません。
また、挿入されたプロパティがWebアプリケーションの最初から利用可能である必要があります(ただし、サーブレットを使用してこれを実行できると思います)。
ありがとう
Providerクラスを見てください。あなたはこのようなものを持つことができます(FooサードパーティのBeanはどこにありますか):
Provider
Foo
public class FooProvider implements Provider<Foo> { public Foo get() { return new Foo(); } }
(または、guice-xmlを見てください。ただし、それがどれほど安定していて最新であるかはわかりません。)