Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I include CSS stylesheets relative to context path in XHTML in JSF 1.1?

<link href="{CONTEXT}/css/style.css" rel="stylesheet" type="text/css"/>

Like we use in JSF2.

<link href="#{resource['css:styles.css']}" rel="stylesheet" type="text/css"/>
share|improve this question

1 Answer

Use ${pageContext.request.contextPath}.

<link href="${pageContext.request.contextPath}/css/style.css" rel="stylesheet" type="text/css"/>

Note that there's no support for #{resource} nor <h:outputStylesheet> in JSF 1.x.

share|improve this answer
#{request.contextPath} returns nothing. – Tarun Nagpal Aug 23 '11 at 14:31
Are you using Facelets or JSPX? When you said XHTML I assumed it to be Facelets. In JSP(X) you should use ${pageContext.request.contextPath} instead. I edited the answer. – BalusC Aug 23 '11 at 14:32
1  
Tnx for your response. I am using facelet. I have resolved the issue by using #{facesContext.externalContext.requestContextPath}. – Tarun Nagpal Aug 24 '11 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.