import javax.ws.rs.Path;
@Path()
public interface IDriver {
public String GetDriverByID(int id);
}
In this code @Path
an error pops up telling "the annotation path must define the attribute value". When I click on resolve it does this @Path(value="")
.
What should is the value ?? I am working in eclipse, and it is a maven project.