在guice中,如何注入泛型类型的对象?

时间:2021-10-29 20:14:16

in guice,how to inject an object of generic type ? for examle:

在guice中,如何注入泛型类型的对象?为了考试:

class Person{
   Map sons;
}

how to inject a Map constructured HashMap ?

如何注入Map构造的HashMap?

1 个解决方案

#1


0  

You can either just use the raw type in Guice or use the Named annotation.

您可以在Guice中使用原始类型,也可以使用命名注释。

#1


0  

You can either just use the raw type in Guice or use the Named annotation.

您可以在Guice中使用原始类型,也可以使用命名注释。