初学Java EE,利用Myeclipse10,开发struts2程序。
第一个小程序,配置完后。
一直提示The requested resource (/Struts2.0/index.jsp) is not available.
 下面是代码(来自郑阿奇主编的 Java EE
基础使用教程中的粒子),求大神帮忙看下代码错在哪了?//web.xml文件<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
  <display-name></display-name>
  
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>
  
 </web-app>//struts.xml文件<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd"><struts><package name="default"  extends="struts-default">        <action name="struts" class="org.action.StrutsAction">
            <result name="success">/welcome.jsp</result>
            <result name="error">/hello.jsp</result>
        </action>
        
        </package></struts>
//JSP文件 hello.jsp[b][/b]   
    
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>struts 2应用</title>
  </head>
  <body>
    <form action="struts.action"  method="post">
        请输入姓名:<input type="text" name="name"/>
     <input type="submit" value="提交">
    </form>
   
  </body>
</html>//JSP文件 welcome.jsp 
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%><%@ taglib uri="/struts-tags"  prefix="s"%>
<html>
  <head>
    
    <title>struts 2应用</title>
  </head>
  
  <body>
    hello<s:property value="#request.name"/>!
  </body>
</html>