An error occurred while loading the file. Please try again.
-
Jan Kožusznik authoredf3d74b90
ReactiveGreetingResource.java 313 B
package java2.lab12.server;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/hello")
public class ReactiveGreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello RESTEasy";
}
}