Skip to content

Instantly share code, notes, and snippets.

@koert
Created July 5, 2015 07:58
Show Gist options
  • Select an option

  • Save koert/32bdd3c785c242284350 to your computer and use it in GitHub Desktop.

Select an option

Save koert/32bdd3c785c242284350 to your computer and use it in GitHub Desktop.
JAX RS application configuration
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
/**
* Application configuration.
* See https://stackoverflow.com/questions/23508159/jax-rs-glassfish-eclipse-a-simple-web-service-doesnt-work
* @author Koert Zeilstra
*/
@ApplicationPath("/")
public class TestServiceApplication extends Application {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment