Struts2示例/ HelloWorld.action

时间:2014-10-26 06:10:25

标签: java struts2

我正在尝试将html / jsp设置为我的索引页面。我在struts.xml中设置了一个home.html。当我加载“localhost / appName /”时,它加载home.html但它有“localhost / appName / example / HelloWorld.action”作为url。反正有没有得到它只是在最后显示home.html?

这是我的struts.xml

<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="true" />

<package name="default" namespace="/" extends="struts-default">

    <default-action-ref name="index" />

    <global-results>
        <result name="error">/error.jsp</result>
    </global-results>

    <global-exception-mappings>
        <exception-mapping exception="java.lang.Exception" result="error"/>
    </global-exception-mappings>

    <action name="index">
        <result>/home.html</result>
    </action>
</package>

<!-- <include file="example.xml"/> -->

<!-- Add packages here -->

1 个答案:

答案 0 :(得分:0)

要实现此目的,您可以在web.xml文件中配置索引页面。在web.xml

中添加以下配置
<web-app> 
  <welcome-file-list>
    <welcome-file>
        home.html
    </welcome-file>
  </welcome-file-list>
<!-- your other configurations-->
</web-app>