Thursday, November 17, 2011

Importing Class files problem

When I was trying to do Servlets and I got the problem of importing  import javax.servlet.annotation; code in the environment. It can't understand this fragment of code while it knows import javax.servlet.*; so I can't use annotations like @WebServlet("/test")
What kind i do?

1 comment:

  1. You cannot write

    import javax.servlet.annotation;

    because annotation is a package - you should be importing classes instead, as in

    import javax.servlet.annotation.*;

    which means "import all the classes in the javax.servlet.annotation package".

    ReplyDelete