Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-19 Thread Nikola Milutinovic
Elihu Smails wrote: I am working on a project that uses servlets exclusively. I would like to take advantage of a Model-View-Controller system in order to develop my servlets. For the last servlet project I worked on, I was in charge of the back-end data processing and did not have to mess with

Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-19 Thread QM
On Fri, Mar 18, 2005 at 11:33:02PM -0500, Elihu Smails wrote: : I am working on a project that uses servlets exclusively. I would : like to take advantage of a Model-View-Controller system in order to : develop my servlets. : [snip] : So I ask the question. Since the requirement that I have is

Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-19 Thread Robert r. Sanders
You could look into alternate MVC approachs like Freemarker, Velocity, or XSLT; these are processed by a servlet, but allow you to extract the presentation logic into a text-based template file. Also, as others have pointed out JSPs are compiled into servlets; and if you know your deployment

Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-19 Thread Elihu Smails
Thanks for the information. I have not written a single JSP, but have alot of experience with Servlets. I am targetting Tomcat 5.5.x only, so I think it is safe to say that I can compile my JSP. Thanks again everyone for the help. On Sat, 19 Mar 2005 08:15:38 -0600, Robert r. Sanders [EMAIL

Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-19 Thread Dakota Jack
Out of curiosity only, why were JSPs banned? That seems to be a bit of a mystery. Do they ban html too? Jack On Fri, 18 Mar 2005 23:33:02 -0500, Elihu Smails [EMAIL PROTECTED] wrote: I am working on a project that uses servlets exclusively. I would like to take advantage of a

[Slightly OT] MVC approach when JSP are not allowed

2005-03-18 Thread Elihu Smails
I am working on a project that uses servlets exclusively. I would like to take advantage of a Model-View-Controller system in order to develop my servlets. For the last servlet project I worked on, I was in charge of the back-end data processing and did not have to mess with HTML. This time I

Re: [Slightly OT] MVC approach when JSP are not allowed

2005-03-18 Thread Simon Kitching
On Fri, 2005-03-18 at 23:33 -0500, Elihu Smails wrote: I am working on a project that uses servlets exclusively. I would like to take advantage of a Model-View-Controller system in order to develop my servlets. For the last servlet project I worked on, I was in charge of the back-end data