什么是org.glassfish.jersey.core

时间:2015-04-15 20:52:34

标签: rest glassfish jersey jersey-2.0

要创建REST Web服务,我通常只使用com.sun.jersey;但现在,我也一直在看org.glassfish.jersey.core。所以,我想知道org.glassfish.jersey.core是什么?这是JAX-RS的另一个实现吗?

1 个答案:

答案 0 :(得分:2)

com.sun.jersey包是Jersey 1.x(包含在Glassfish 3.x中)。

org.glassfish.jersey.core包是Jersey 2.x(包含在Glassfish 4.x中)。

您不应该在Web应用程序中混合使用这两个版本。