mraible wrote:
>
> This happens with Struts 2, but not Spring MVC. Are you sure you're
> using Spring MVC? If so, can you describe how to reproduce the issue.
>
> Thanks,
>
> Matt
>
As far as I can see it, I am using MVC. I have the following code:
---snip---
@RequestMapping("/gallery-view.html")
public ModelAndView getGalleryOverview(HttpServletRequest request,
HttpServletResponse response){
return new
ModelAndView("gallery-view","gallery",galleryManager.get(Long.parseLong(request.getParameter("gid"))));
}
---/snip---
And the following JSP file (gallery-view.jsp):
---snip---
<%@ include file="/common/taglibs.jsp"%>
${gallery.fieldThatDoesntExist}
---/snip---
And all I get is an empty page, but no error output on the console.
-----
Christian Decker
http://blog.snyke.net
--
View this message in context:
http://www.nabble.com/Enable-compilation-output-for-JSP-tp20452415s2369p20452996.html
Sent from the AppFuse - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]