One of the things that's neat about the IIS / ASP.NET environment is the ability to do an "xcopy deployment" - you can literally just drop a stack of .aspx pages in a web-shared directory, and ISS will figure out how to show them to the web.
Is there a way to do something similar with JSPs?
The exact use case in question is this: we have an internal development/debugging tool that would work much better if it was just a JSP or two living on the "back burner" of the web server.
The whole process of creating a JAR and/or WAR files for a single JSP seems like overkill, as does setting up a whole ant build/deployment task. Is there any way to just point the server at a directory with JSPs in it and have it show those?
(For the record, we're using JBoss as our java web server, so solutions with that would bve preferred, but due to the nature of this particular puzzle I'll take any windows-runnable java server you might have in mind.)