This week's book giveaway is in the Cloud/Virtualization forum.
We're giving away four copies of Cloud Application Architecture Patterns: Designing, Building, and Modernizing for the Cloud and have Kyle Brown, Bobby Woolf and Joseph Yodor on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

extension .jspx and .tagx

 
Ranch Hand
Posts: 264
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have seen .jspx and .tagx some where during including jsp file.

Could anybody clear me what are these actually.
 
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Those are the extensions for JSP files and tag files in xml syntax. As you may know there are two alternative syntaxes for JSP: the traditional one (using <% %> for scriptlets, for instances) and the XML variant (using <jsp:scriptlet>
</jsp:scriplet> . ). There are several ways to configure your web container to treat files as documents (XML) instead of traditional syntax files. One of those (for JSP 2.0 and higher) is to give the extension .jspx and .tagx for JSP files and tag files respectively. See also this thread.
[ December 04, 2007: Message edited by: Jan van Mansum ]
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You'll find all details in the JSP Specification under the following chapters:
  • Part I - JSP Documents
  • Part I - JSP.8.6 Tag Files in XML Syntax

  •  
    I like you because you always keep good, crunchy cereal in your pantry. This tiny ad agrees:
    Get subscribers for you social network!
    likes.social
    reply
      Bookmark Topic Watch Topic
    • New Topic