.jsp vs .jspx question - Java
This is a discussion on .jsp vs .jspx question - Java ; What significant differences are there between jsp and jspx? The only
one that i know of is that jsp is html based and jspx is xml based....
-
.jsp vs .jspx question
What significant differences are there between jsp and jspx? The only
one that i know of is that jsp is html based and jspx is xml based.
-
Re: .jsp vs .jspx question
On Aug 27, 10:07 am, SrferDave <dcin...> wrote:
> What significant differences are there between jsp and jspx? The only
> one that i know of is that jsp is html based and jspx is xml based.
jspx extension indicates that the page is a well formed XML. This is
meaningful for the 2.4 Servlet Spec. A jspx page is also refered to as
a JSP Document, vs. a jsp which is a page. Another extension in the
mix is jspf, which is basically a JSP fragment that you can include in
the pages/documents.
Google around for more information on how to use these extensions, and
how they fit in the web.xml.
-cheers,
Manish
-
Re: .jsp vs .jspx question
On Aug 27, 10:07 am, SrferDave <dcin...> wrote:
> What significant differences are there between jsp and jspx? The only
> one that i know of is that jsp is html based and jspx is xml based.
I believe the difference is that you have to use well-formed XML in
the jspx, where in jsp, you can do things like <a href="<c
ut value="$
{url}" escapeXml="true"/>" title="stuff">link</a>
I could be wrong though, I only read about jspx, and that was quite a
while ago.
Similar Threads
-
By Application Development in forum PROLOG
Replies: 6
Last Post: 08-12-2005, 05:33 AM
-
By Application Development in forum Clarion
Replies: 6
Last Post: 04-25-2005, 03:37 PM
-
By Application Development in forum Clarion
Replies: 0
Last Post: 04-21-2005, 03:07 PM
-
By Application Development in forum basic.visual
Replies: 4
Last Post: 02-01-2004, 03:38 PM
-
By Application Development in forum Java
Replies: 0
Last Post: 11-30-2003, 11:43 AM