package cz.priklad.rest;
import javax.ws.rs.GET;
import javax.ws.rs.Produces;
import javax.ws.rs.Path;
// Jedná se o komponentu napojenou na URL /hello
@Path("/hello")
public class HelloResource {
@GET // Metoda GET
@Produces("text/plain") // Generuje Content-Type text/plain
public String getMessage() {
return "Haló světe"; // vrátíme tento text
}
}