chodycloliogy
New Member
I'm using Servlet 3.0 and Java EE 6 in my project and there is no web.xml file - I would like to keep it that way (using annotations everytime I can).The old way to do it is editing web.xml file like this:\[code\]<context-param> <param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/your.taglib.xml</param-value></context-param>\[/code\]Is there an alternative avoiding web.xml to register my taglib?Thanks.