• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Spring ModelMap rendering problem

 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi i have a multiactioncontroller and have this method



and i have a jsp



prints temp



prints temp



exception occurs

Do you have any idea. if you wonder i am using tiles.

 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, the root cause is this

Caused by: java.io.IOException: JSPException while including path '/WEB-INF/pages/product/site_admin/productCategoryList.jsp'. ServletException while including page.

So the include that you have is probably wrong. It can't find the productCategoryList.jsp

What happens if you remove the first "/" in front of WEB-INF

Pathing always gives me fits too.

Mark
 
fu bace
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As you see above, exception occurs when i refer ModelMap key in c:out. Tiles is working in first and second jsp. The problem is with third jsp
 
fu bace
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i changed



with



in web.xml and it worked but i dont have any idea.
 
reply
    Bookmark Topic Watch Topic
  • New Topic