Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

guice/Manual/UserGuide/Bindings/UntargettedBindings

Untargettedバインディング

ターゲットを決めずにバインディングを作成することもできる。 これは、@ImplementedByや@ProvidedByでアノテートされたコンクリートクラスに便利である。 Untargettedバインディングはインジェクタにタイプのみを伝えるため、インジェクタは依存性を早期に準備する。 Untargettedバインディングはto句は不要である。

    bind(MyConcreteClass.class);
    bind(AnotherConcreteClass.class).in(Singleton.class);