Reputation: 819
I have searched stackoverflow before posting this question.
In eclipse i am running a tomcat server. I deleted the .class files from the work folder of the tomcat server. From then on I am facing the issue saying the class couldnot be found. I re-built the project. Didnt help
Can you please suggest how to fix this issue.
Upvotes: 0
Views: 1912
Reputation: 75346
You should NOT run Tomcat as a normal program inside Eclipse. You should use the EE version of Eclipse, and then add Tomcat in the server view. This will allow you to deploy Dynamic Web Projects directly to Tomcat or any other supported server.
Upvotes: 2