I have created java Project with wicket in eclipse. the application works fine. The problem is, when I change the java code in the project and reload the page to see these changes, the changes do not appear.
The changes appear only when I run the project again (right mouse click on the project -> run as -> java application). Is there a way to see the changes after reloading the page without needing to run the project again every time?
Use debug-as instead. This will instruct eclipse to use hotswap and update your running application. Note that you’ll still need to restart your application often since hotswap doesn’t support all class file changes. For that you’ll probably need to use a class-reloading solution, such as JRebel, or use the redeploy feature of a container.