Maven神器jersey-grizzly2这几个版本有什么区别?
What is the difference between these versions of Maven artifact jersey-grizzly2?
示例 Maven 依赖块:
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-grizzly2</artifactId>
<version>${jersey-grizzly2.version}</version>
</dependency>
在 Maven Central 上,我看到:
- 2015 年 6 月 10 日:1.18.4
- 2015 年 2 月 11 日:1.19
旧版本的版本号更高。这让我很困惑。
我的 Google-fu 在这里失败了。我在 Jersey 和 Grizzly 的官方文档中找不到关于这个 Maven 工件的任何信息。
哪个最好用(考虑"latest")?
这很有趣,jersey-grizzly2
发布时可能犯了一个错误。
大家可以放心jersey-grizzly2:1.19
was released on Feb 11, 2015 and that jersey-grizzly2:1.18.4
was released on Jun 09, 2015. You can also see that on the directory tree of Maven Central for both artifacts (here and here).
像你一样,我找不到任何关于这个的参考,但别担心,Maven Central 上的发布日期不会说谎:1.18.4
2015 年 6 月 9 日发布是 比 2015 年 2 月 11 日发布的 1.19 更新。
但是请注意,从 list of modules of latest Jersey 2.22 documentation, you should use jersey-container-grizzly2-servlet
改为。
示例 Maven 依赖块:
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-grizzly2</artifactId>
<version>${jersey-grizzly2.version}</version>
</dependency>
在 Maven Central 上,我看到:
- 2015 年 6 月 10 日:1.18.4
- 2015 年 2 月 11 日:1.19
旧版本的版本号更高。这让我很困惑。
我的 Google-fu 在这里失败了。我在 Jersey 和 Grizzly 的官方文档中找不到关于这个 Maven 工件的任何信息。
哪个最好用(考虑"latest")?
这很有趣,jersey-grizzly2
发布时可能犯了一个错误。
大家可以放心jersey-grizzly2:1.19
was released on Feb 11, 2015 and that jersey-grizzly2:1.18.4
was released on Jun 09, 2015. You can also see that on the directory tree of Maven Central for both artifacts (here and here).
像你一样,我找不到任何关于这个的参考,但别担心,Maven Central 上的发布日期不会说谎:1.18.4
2015 年 6 月 9 日发布是 比 2015 年 2 月 11 日发布的 1.19 更新。
但是请注意,从 list of modules of latest Jersey 2.22 documentation, you should use jersey-container-grizzly2-servlet
改为。