• 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

tld and tag files directory structure

 
Ranch Hand
Posts: 352
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey,

First of all we can put those files any where in web directory structure right? i mean things not in correct directory container will just consider some files to be deliver to client. will not give any error right?

We know tld files can be in either directly in WEB-INF or in a sub direcotry of WEB_INF and this sub directly should not need to be name as "tlds" right? can be any name which container wont care and same with tag files also...directory name can be any name right? no need to be "tags" exactly..HFSJ book shows the directory structure with those names..that is why i asked

Thank You.
 
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
First of all we can put those files any where in web directory structure right?
i mean things not in correct directory container will just consider some files to be deliver to client.

will not give any error right?


You're right. No error. Just simple files.

We know tld files can be in either directly in WEB-INF or in a sub direcotry of WEB_INF and this sub directly should not need to be name as "tlds" right?


Yes

and same with tag files also...directory name can be any name right?


No, Tag files (which are not in a JAR) must be put in the "WEB-INF/tags" directory, or one of its subdirectory.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic