Org.glassfish.jersey.server.resourceconfig Download: [updated]

org.glassfish.jersey.core jersey-server 3.1.11 org.glassfish.jersey.core jersey-server 2.46 Use code with caution.

The most efficient way to "download" this class is by adding its coordinates to your build management tool. The ResourceConfig class resides in the jersey-server artifact. org.glassfish.jersey.server.resourceconfig download

import org.glassfish.jersey.server.ResourceConfig; public class MyJerseyConfig extends ResourceConfig { public MyJerseyConfig() { // Option 1: Scan a package for resources packages("com.myapp.rest"); // Option 2: Register specific classes register(MyResource.class); } } Use code with caution. Common Download Platforms org.glassfish.jersey.core » jersey-server » 2.15 org.glassfish.jersey.server.resourceconfig download

Once the dependency is downloaded, you typically use ResourceConfig in your application's entry point: org.glassfish.jersey.server.resourceconfig download