1

I am new to Eclipse, i know that in windows environment i would recompile the changed source code and put the .class file in the classes directory it belongs. In eclipse i change the code and restart the server but it seems the .class file remains unchanged, what am i doing wrong?

Evan
  • 1,683
  • 7
  • 35
  • 65

2 Answers2

2

Try these options ..

Menu - Project - clean (Click this option if Build Automatically is not used)

Menu - Project - Project Build Automatically (Check this option)

These can help you.

Using the Eclipse Workbench

Servlet and JSP development with Eclipse

Srikanth Venkatesh
  • 2,812
  • 1
  • 20
  • 13
1

In that case try to clean your project and rebuild it.

You will get these options in Project menu of eclipse

mahesh
  • 4,625
  • 11
  • 42
  • 61