2010年8月13日金曜日

Struts Hello World 【その1】文字表示

1、Strutsのページ表示です
2、page1.jspを作成
<%@ page contentType="text/html;charset=Shift_JIS" %>
<html:html>
<head><title>ページ1</title></head>
  <body>
  ページ1:動くかな?
  <html:form method="POST" action="/page1action">
  <html:submit value="次へ"/>
  </html:form>
  </body>
</html:html>
3、struts-config.xmlの中のaction-mappingの初期表示を指定する箇所にpage1.jspを指定
<action-mappings>
<action path="/Welcome" forward="/page1.jsp"/>
</action-mappings>

4、なんとか表示されたのでOKです。

0 件のコメント:

コメントを投稿