Dhaval wrote: > I have deployed a web application called 'proj' in the webapps directory, and have > all the jsp files in there, while my .java files reside in proj/WEB- > INF/classes/objects directory. When I try to go to > http://localhost:8080/proj/login.jsp, it throws back an error saying 'package > objects does not exist'. I have a page import directive in my login.jsp page > that imports objects.*.
As John mentioned, those should be '.class' files, not '.java' files. Also, do these .java files all have 'package objects;' at the top? -- Wendy
