simple example using resteasy-jaxrs not working
问题 I can't get the message "hello" when I visit the page. package jaxrs.ressources; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; @Path("greeting") public class HelloRessource { @GET @Path("hello") @Produces(MediaType.TEXT_PLAIN) public String sayhello() { return "Hello from JAX-RS"; }} and this class package jaxrs.utilities; import javax.ws.rs.ApplicationPath; import javax.ws.rs.core.Application;