Error: package is not imported into eclipse [closed]

-1

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:

    
asked by anonymous 17.08.2018 / 21:54

1 answer

0

Corrected Coda:

import javax.ws.rs.GET; // import jersey library     import javax.ws.rs.Path; // import jersey library     import javax.ws.rs.Produces; // import from jersey library

@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";
        }

}
    
20.08.2018 / 23:09