Does anyone have a way to batch process JSP files, off line with no
browsers involved?
Sometimes it is useful to batch process files to produce flat HTML. The
JSP syntax would be useful here, if there was someway to do it... anyone
have any idea?
I'm thinking of something along the lines of:
JSP j = Something.createJSP("file.jsp");
j.add(myobject1);
j.processAndWriteTo("file1.html");
j.clean();
j.add(myobject2);
j.processAndWriteTo("file2.html");
...etc...
In my JSP file, I'd want to be ableto refer to my objects in some way,
such as <% =myobject.someProperty %> ?
Cheers
Richard
Get Your Private, Free Email at http://www.hotmail.com
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".