I have a jsp based web application.
The source is kept in C:/MyApp/src
. Here it contains the controllers and other .java
files.
After building the application via eclipse. I copied the .war
file to Apache/WebApps
folder. Apache Tomcat expanded it and the web-application is working perfectly.
From the last couple of days I edited a lot of pages directly in Apache/WebApps
folder. Now I want to edit a .java
file in C:/MyApp/src/..
Now I want to use that updated .java
file in my Apache/WebApps
but don't want to rebuild the whole code via eclipse. If I do so my changes that I made in Apache/WebApps
folder will be lost.
What should I do?