I want to make include jspf into index jsp page , these statements

<%-- any content can be specified here e.g.: --%>
<%@ page pageEncoding="UTF-8" %>

aappears in the index page !!

here's the include line in index page

 <jsp:include page="WEB-INF/jspf/Header.jspf" />

Note : I make head and body in the index page only, can some body tell me why the first lines appears in the index page?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

JSPF files are intented to be statically included by @include. Its source code becomes then literally part of the parent JSP file. This happens only once, during compiletime.

<%@include file="/WEB-INF/jspf/Header.jspf" %>

If you want a compiletime include with <jsp:include> then just rename .jspf to .jsp. The source code will then be compiled once separately and its output will be generated and included during runtime. This happens then on every request.

link|improve this answer
It works and fix the Arabic encoding problem too, I don't think making the include for header and footer at compile time r not good practice, what do u think Mr @BalusC ? – PalAla May 3 '11 at 19:11
feedback

Your Answer

 
or
required, but never shown

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