Question
External Class useful testing tip
So awhile back I had posted if there was any way to not bounce the server each time I made a change to a class and wanted to test the changes.
The answer I got back was no, you need to restart the MethodServer.
So what I've been doing to get around this is:
- Create a JSP file to do my testing with.
- Copy my methods into the JSP.
- Make the modifications to the methods
- Open the JSP with the web browser.
- If necessary make additional changes to the methods in the JSP page
- Refresh the web browser etc...
- Once I'm satisfied with the changes i've made, copy the modified methods from the JSP back into my external classes, and recompile
Of course all the editing i'm doing is on my local machine and I then transfer it to my development server. I omitted those steps above.

