当对数据验证失败的时候(就是没有通过validate.xml格式验证)
跳回input.jsp页面时出现:javax.el.PropertyNotFoundException: Property 'app_title' not found on type org.apache.catalina.core.ApplicationContextFacade我的跳转配置<result name="input">/input.jsp</result>我在input页面里用到了<title>${application.app_title}</title>
当第一次打开input.jsp页面时是可用正常显示的,但提交input.jsp页面后,如果数据验证不通过就会出现上面的问题
请问如果解决,是不是input页面就不能使用session或者application之类的东西?