0

hi I'm using eclipse and I'm trying out a few things with servlets.

Why in eclipse when i run a file after changes, i can't see the changes even though i set re loadable to true? i have a class that extends HttpServlet and in the doGet method I'm printing out just "Hello World!" and when I'm doing some changes i try to rerun it and everything stays like it was the first time. I'm using Apache tomcat 7.

is there a way to fix it?

<Context reloadable="true"> 
</Context>
Elye M.
  • 2,667
  • 4
  • 30
  • 43

1 Answers1

1

What you need is to build from scratch. Do the following:
1. Restart your server(tomcat)
2.Using eclipse Menu go to Project=>clean this will clean previous output

user1577291
  • 366
  • 1
  • 3
  • 15