I started a Dynamic Web project in Eclipse and the Automatically generated directory is:
Java Resources
|-src
| |-myPackage
| |-.java files
|-libraries
Build
Web Content
|-META-INF
|-WEB-INF
|-index.jsp
In my index.jsp file I include a servlet:
<jsp:include page="ServletName" flush="true">
that is a java file placed under JavaResources/src/myPackage, but i get an error because that file is supposed to be placed under Web Content. How can I change the expected path? Thank you.