2

I'm working on a JSF project on NetBeans. I'm using JSPF fragments for modularity. My JSPF directory is "/WEB-INF/jspf". I'm using <jsp:include page="/WEB-INF/jspf/myincludefile.jspf"/> for including JSPF files.

The problem is: I tried to include a JSPF file in another JSPF file but it didn't work.

SetFreeByTruth
  • 819
  • 8
  • 23
gesus
  • 471
  • 1
  • 10
  • 24

1 Answers1

2

Yes I could include JSPF in a nested fashion with the include directive:

<%@ include file="/WEB-INF/templates/signin-button.jspf"%>

Using JSTL 1.2

ruhong
  • 1,793
  • 5
  • 28
  • 34