struts2を学習し始めたばかりです。 下記、ページのサンプルを試していますが http://www.atmarkit.co.jp/fjava/special/struts2/struts2_3.html ステータス404エラーになります。 The requested resource is not available 環境はeclipse4.4(Luna) Tomcat6.0.39 struts2.3.16 jarファイル類(下記)をパソコンのCドライブ Tomcat6.0のlib配下に設置 commons-logging-1.0.4.jar freemarker-2.3.12.jar commons-fileupload-1.2.1.jar ognl-2.6.11.jar struts2-codebehind-plugin-2.1.2.jar struts2-core-2.1.2.jar xwork-2.1.1.jar struts2 プロジェクト testパッケージを作成-配下にindexAction.javaを作成 Webcontent配下にindex.jspとindex-hello.jspを作成 WEB-INF内 web.xmlを書き換え 各ソースは下記の通りです。 (1)web.xml struts2 org.apache.struts2.dispatcher.FilterDispatcher actionPackages test struts2 /* (2)index.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags" %> こんにちは (3)indexAction.java package test; import com.opensymphony.xwork2.ActionSupport; public class indexAction extends ActionSupport { public String execute() throws Exception { return "success"; } public String message; public String hello() throws Exception{ message = "こちらこそ"; return "hello"; } } (4)index-hello.jsp <%@ page language="java" contentType="text/html; charset="UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags" %> 質問事項 (1)http://localhost:8080/sturts2/index.actionにアクセスするように書いてありますが eclipse上で上記にアクセスするにはどうすればよいでしょうか?現在、tomacatを立ち上げてから ブラウザを起動してアクセスしています。出来ればEclipse内で行いたいのですが何か方法ないでしょうか? (2)ステータス404の回避 ソースコード上、エラー箇所は出ておりません。 解決策をお教えください。
↧