Sounds like a bug in JSP's EL, not exactly Spring MVC since you're not using any Spring tags. You might try creating a simple JSP w/o any frameworks and see if it happens there. Here's a blog post I wrote on a similar subject, but it involves tag libraries, not straight JSP EL.
http://raibledesigns.com/rd/entry/does_struts_2_suck Matt On Tue, Nov 11, 2008 at 7:48 PM, Christian Decker <[EMAIL PROTECTED]> wrote: > > > > 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] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
