A Visual Studio user struggling w/ Eclipse...
I imported a set of servlets/JSPs into a project in Oracle Workshop for Weblogic. /page.jsp has the following import stat
First of all, /WEB-INF/src
is a rather strange place to keep your java sources; you may want to move them out of /WEB-INF
(into /src
in project root, for example)
Either way, you need to tell Eclipse where your sources are and where you want classes built to. It's done in project properties dialog:
/WEB-INF/src
or wherever you moved it to)/WEB-INF/classes
or other location of your choice.