Skip to content

Instantly share code, notes, and snippets.

@tassioauad
Last active April 5, 2018 20:42
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save tassioauad/afa28d12ef363ef2f3fbdf586a286c2f to your computer and use it in GitHub Desktop.
@Configuration
@ApplicationPath("v1")
public class JerseyConfig extends ResourceConfig {
public JerseyConfig() {
}
@PostConstruct
public void setUp() {
register(HelloWorldResource.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment