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?
What kind i do?
You cannot write
ReplyDeleteimport 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".