@Component | |
@Path("hello") | |
public class HelloWorldResource { | |
@GET | |
@Produces("application/json") | |
public String hello() { | |
return "Hello, world"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment