Visual Studio user struggling with Eclipse ...
I imported a set of servlets / JSPs into a project in Oracle Workshop for Weblogic./page.jsp has the following import statement:
import="com.foo.bar.*"
Eclipse displays an error message:
Import com cannot be allowed.
The class that implements the above import is located in /WEB-INF/src , but I do not know how to build the class in Eclipse to fix this error. I assumed that Eclipse will automatically create a .java file and put the output in /WEB-INF/classes , but it will not.
Maybe I didn’t structure my project directories correctly, which is why maybe Eclipse is not creating my source. Any suggestions? How can I make this work?
Sajee source share