Is there any way to change the source code of servlets/JSPs directly on the server, like in php?
Or do I have to compile and upload the full WAR-archive each time?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re deploying as a war, then you need to upload the entire war; that’s kind of the point of them.
If you’re deploying a pre-exploded war, you can hot-deploy JSP files since they’re compiled when they’ve changed, but servlet/etc. class files will generally require a restart, although that can depend.