• 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

jsp:include and c:import combination/nesting

 
Ranch Hand
Posts: 751
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guys, I know I've done this before with Struts.But right now, I'm working on plain Servlets and JSP(Ok, I'm using JSTL).

I have a JSP named showitems.jsp which imports two JSP's via two servlets. Those two servlets forward to another page through RequestDispatcher.



now, I include this showitem.jsp in my index.jsp



problem is that, the index.jsp seems to be broken. Eveything before the call to <jsp:include page="WEB-INF/includes/showitems.jsp"/> is omitted. Everything from that point on is displayed. What could be the problem with this? When I c:import with the index.jsp, everything works fine. Only that when I put those c:import tags in showitems.jsp and include that showitems.jsp in index.jsp that I'm having a problem...
 
I like tacos! And this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic