出现空白页面肯定是你的Struts里面没有配置跳转页面,就是说你的Struts的xml文件中的action没有forward属性,或者说你在跳转之前请求的action后mapping.forward中的参数在xml中没有体现!

解决方案 »

  1.   

    看你报错应该是spring没正常工作,web.xml里要配的
             <servlet>
    <servlet-name>SpringContextServlet</servlet-name>
    <servlet-class>
    org.springframework.web.context.ContextLoaderServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>ContextLoaderServlet这个类不加载的话,肯定会报 No   WebApplicationContext   found:   no   ContextLoaderListener   registered
    至于你说的JSP页面空白不明白啥意思,难道你写几个字在上面也显示不出来?/?