Created
July 5, 2015 07:58
-
-
Save koert/32bdd3c785c242284350 to your computer and use it in GitHub Desktop.
JAX RS application configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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