/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].
是怎么回事啊