I'm developing a web-application on Eclipse. I've implemented the DAL as a separate project and set it as dependency of my main project.
I can compile the main project, but when I run it, i get this exception:
SEVERE: Servlet.service() for servlet InputServlet threw exception
java.lang.ClassNotFoundException
It can't find a class that is in my "DAL Project" so it seems that classes of this project are not deployed in Tomcat when I run the web-app.
How can I solve it? Is there something to configure?