.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....

+ Reply to Thread
Results 1 to 3 of 3

.jsp vs .jspx question

  1. Default .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.


  2. Default 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


  3. Default 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="<cut 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.


+ Reply to Thread