• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

querry relating to Tag library

 
Ranch Hand
Posts: 211
Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can someone tell me how Classic tag handlers and Tag files CAN reside in the same tag library. ??
Correct me if i am wrong if abc.tag and xyz.tag both reside in /WEB-INF/tags,the container will consider them part of the same tag library.
Then how can Classic tag handlers and Tag files CAN reside in the same tag library. ??
 
Sheriff
Posts: 9708
43
Android Google Web Toolkit Hibernate IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't exactly understand the question. You can declare tag files and class tag handlers by using a TLD file. Classic tags are classes which reside in classes directory or in jars included in the project and not in tags directory...
 
Sagar Shroff
Ranch Hand
Posts: 211
Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ankit Garg wrote:I don't exactly understand the question. You can declare tag files and class tag handlers by using a TLD file. Classic tags are classes which reside in classes directory or in jars included in the project and not in tags directory...



thats what i am not getting.I was browing web when i was learning tag files and i came up with this statement that says " Classic tag handlers and Tag files CAN reside in the same tag library "
Can you tell me what exactly Tag library imply here ?
 
Creator of Enthuware JWS+ V6
Posts: 3411
320
Android Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Then how can Classic tag handlers and Tag files CAN reside in the same tag library. ??



When a tag file is contained in a JAR file (located at /WEB-INF/lib) it should have a declaration in a TLD file, like this:


In this TLD file you are allowed to mix regular tag declarations(classic tags), tag file declarations and EL functions

Regards,
Frits
 
Sagar Shroff
Ranch Hand
Posts: 211
Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Frits Walraven wrote:

Then how can Classic tag handlers and Tag files CAN reside in the same tag library. ??




In this TLD file you are allowed to mix regular tag declarations(classic tags), tag file declarations and EL functions

Regards,
Frits




Thanks alott my friend ! . You cleared this doubt of mine which was always hovering in my mind.
Thanks You

Regards,
Sagar.
 
reply
    Bookmark Topic Watch Topic
  • New Topic