Error: package not imported in eclipse

Asked

Viewed 221 times

-1

I’m creating a Rest app in eclipse but am getting an error message when importing classes from jersey.

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:

inserir a descrição da imagem aqui

  • 2

    These imports are wrong, change the WebServices for ws, must have copied an old example.

  • Fix worked.

1 answer

0


Corrected tapeworm:

import javax.ws.rs.GET; //import from jersey library import javax.ws.rs.Path; //import from 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";
        }

}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.