要创建REST Web服务,我通常只使用com.sun.jersey
;但现在,我也一直在看org.glassfish.jersey.core
。所以,我想知道org.glassfish.jersey.core
是什么?这是JAX-RS的另一个实现吗?
答案 0 :(得分:2)
com.sun.jersey
包是Jersey 1.x(包含在Glassfish 3.x中)。
org.glassfish.jersey.core
包是Jersey 2.x(包含在Glassfish 4.x中)。
您不应该在Web应用程序中混合使用这两个版本。