1

从 Maven 存储库获得的我的 Gucie 3.0 中不包含 MapBinder,这很奇怪:

我的 Maven 配置是这样的:

<dependencies>
    ....
    <dependency>
        <groupId>com.google.inject</groupId>
        <artifactId>guice</artifactId>
        <version>3.0</version>
    </dependency>
    ....
</dependencies>

我在 maven 仓库中的 Guice 3.0 甚至没有这个包:

com.google.inject.multibindings

有人可以指出我正确的方向吗?

非常感谢

4

1 回答 1

8

添加 multibindings 模块 - 它是扩展的一部分:

<dependency>
  <groupId>com.google.inject.extensions</groupId>
  <artifactId>guice-multibindings</artifactId>
  <version>3.0</version>
</dependency>
于 2013-08-18T22:29:29.683 回答