各位大神帮帮忙!!!我的类继承ActionSupport后,里面的普通方法不能访问?




/ok.jsp



public class ThirdAction extends ActionSupport {
public String test() throws Exception{
return SUCCESS;
}
}
访问这个url:http://localhost:8080/teststruts01/third!test
报这个错误:HTTP Status 404 - There is no Action mapped for namespace [/] and action name [third!test] associated with context path [/teststruts01].
是怎么回事啊

查看下这个,https://zhidao.baidu.com/question/510163755.html