のStruts 1.xのは、2013年4月5日のようEnd Of Life状態に達している、だから、1.xのバージョンを使用することをお勧めしません。
index.jspファイルに、スクリプトレットの代わりに<jsp:forward>
タグを使用してください。
<jsp:forward page="HomeAction.do"/>
そして、あなたのstruts-config.xml
、
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
<struts-config>
<action-mappings>
<action
path="/HomeAction"
type="org.apache.struts.actions.ForwardAction"
parameter="/welcomeStruts1.jsp"/>
</action-mappings>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
</struts-config>
で詳細Configure a welcome page in Strutsを参照してください。お役に立てれば。
関連するアクション部分を 'struts-config.xml'からポストしてください。 –