In HttpServletBean class line 84 init() method:
The BeansException ex is thrown again. If I misconfig a jar file, this will bomb out without sending any message to the screen(a blank screen), I am wondering whether this ex should be converted to something that servlet containers would know and thus send a proper message to the screen, rather than a blank screen.Code:catch (BeansException ex) { logger.error("Failed to set bean properties on servlet '" + getServletName() + "'", ex); throw ex; }
My case was that I was trying to remove some unnecessary jar files.
Thanks,
Rick


Reply With Quote