You have a bunch of servlet-mappings in your web.xml file that map that maps the jsp URL to the pre-compiled class. Jspc will generate these for you.
One gotcha with doing this is that TC 4.x won't find welcome-files (e.g. index.jsp) unless there is an actual file with that name. The file can be empty, but it has to exist. "Rob" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I would like to bundle my application into a single .war file. > In addition I would like to include the precompiled .jsp files > in the war file as opposed to the .jsp files themselves. > > Is there a way to do this? I would like to deploy my > application to a target without a `javac`. > > A description of how would be appreciated, particularly > where within my hierarchy I place the class files and how it > affects the requests for those .jsp files (ie can a person still > type in http://www.foo.com/myapp/my.jsp) or do they end up > being used as servlets instead? > > Thanks > > Rob --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
