在Guice中注入字符串列表

2022-07-19 00:00:00 java guice

我正在尝试在Guice中注入一个字符串数组列表。为此,我尝试在模块中构建如下列表,稍后我可以将其注入到任何类中:

Multibinder<String> myList =
            Multibinder.newSetBinder(binder(), String.class);


myList.addBinding().to("Test1");
myList.addBinding().to("Test2");

在上面的行中,我收到以下错误:

The method to(Class<? extends String>) in the type LinkedBindingBuilder<String> is not applicable for the arguments (String)

在此上下文中,我发现:Guice : Inject an ArrayList of Strings,但我认为给定的解决方案不适合我的用例。


解决方案

使用.toInstance()

myList.addBinding().toInstance("Test1");
myList.addBinding().toInstance("Test2");`

相关文章