I am working on examples in Restful Java with JAX-RS Bill Burke. I use intellij and created a Maven project to create the Hello World web service. I understand that JAX-RS is a specification, not an implementation. I would like to try the Apache CXF implementation.
How to find out what a jar or Maven artifact contains the necessary classes:
import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.GET;
source share