I'm creating an app rest in eclipse but I'm getting an error message when importing jersey classes.
Code
import javax.WebServices.rs.GET; //import da biblioteca jersey
import javax.WebServices.rs.Path; //import da biblioteca jersey
import javax.WebServices.rs.Produces; //import da biblioteca jersey
@Path("/teste1")
public class Resource {
@GET // utilizando apenas o verbo GET, ou seja, vou apenas ler o recurso
@Produces("text/plain") // define qual tipo MIME é retornado para o cliente
public String exibir(){
return "Teste Cielo 1";
}
}
Error Message: