Using EClipse, First: I created a Dynamic Web Project and copied soem JAR files ( Jersey Jar files ) to WebContent\WEB-INF\lib folder of that project.
Then I created a new class and on top of it I used some imports such as these:
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
but it shows some red X errors next to all of them saying the import cannot be resolved.
That's ALL I have done. Is there any other settings I should do to fix these errors?