Skip to content

Instantly share code, notes, and snippets.

@hstaudacher
Last active August 29, 2015 13:55
Show Gist options
  • Save hstaudacher/8784370 to your computer and use it in GitHub Desktop.
Save hstaudacher/8784370 to your computer and use it in GitHub Desktop.
OSGi-JAX-RS Connector ExampleResource
package osgi.rest.example;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path( "/hello" )
public class ExampleResource {
@GET
public String helloWorld() {
return "Hello World";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment