私はクラスを持っています:
public class FizzBuzz {
@Named("Red") private String redService;
public static void main(String[] args) {
GuiceTest testApp = new GuiceTest();
testApp.run();
}
private void run() {
Injector inj = Guice.createInjector(new MyModule());
redService = (String)inj.getInstance(String.class);
// Should print "red-service" but is instead an empty string!
System.out.println("redService = " + redService);
}
// ... Rest of class omitted for brevity
}
public class MyModule extends AbstractModule {
@Override
protected void configure() {
bind(String.class).annotatedWith(Names.named("Red")).toInstance("red-service");
}
}
私のモジュールでは、すべてのString.class
インスタンス@Named
「Red」を文字列インスタンス「red-service」にバインドするように Guice に指示していますが、出力された print ステートメントにはそれが表示されません。Guice の使い方が間違っているのはなぜですか?