welcome-file可以是个jsp,尽量不要用action直接转

解决方案 »

  1.   

    web.xml 
    ---
     <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>index.jsp
    ----
    <logic:redirect forward="main"/>struts-config.xml
    --------
        <global-forwards>
            <forward name="main" path="/main.do"/>
        </global-forwards>    <action-mappings>
            <action path="/main" type="org.apache.struts.actions.ForwardAction"
                            parameter="/pages/Welcome.jsp"/>
        </action-mappings>问一句,你为什么要转泥?要好看么?
      

  2.   

    初始内容写个javabean取数怎么样