Struts2中的路径及通配符问题

 package com.imooc.Controller;
import com.opensymphony.xwork2.ActionSupport;
public class ManageStudent extends ActionSupport {
    @Override
    public String execute() throws Exception {
        // TODO Auto-generated method stub
        return SUCCESS;
    }

    public String add(){
        System.out.println("add");
        return SUCCESS;
    }

    public String delete(){
        return "success";
    }

    public String update(){
        return SUCCESS;
    }

    public String selete(){
        return SUCCESS;
    }
}

以下是项目文件
图片说明

下面是访问的jsp文件
图片说明

以下是struts.xml文件中的内容

 <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <package name="default" extends="struts-default">

        <action name="*_*" class="com.imooc.Controller.ManageStudent" method="{2}">
            <result >/page/{1}/{1}_{2}.jsp</result>
        </action>

    </package>
</struts>

为什么输入http://localhost/B010_StrutsTest/Student_add.action页面不能跳转啊?怎么修改?求大神指导迷津,谢谢!

我都是习惯性写全,后续增减method方便

只是看代码,提两点可能的原因
1. 这一句是不是应该添加 namespace="/"
2.web.xml中设置struts过滤的时候,是不是只过滤*.do,不过滤*.action

没写返回值,,写个返回success。,