問題:
用strtus注解的形式生成一個action
@ParentPackage("struts-default")
@Namespace("/welcome")
@Results(value={
@Result(name="success",location="/pub/index.html"),
@Result(name="fail",location="/pub/index1.html")
})
public class IndexAction extends ActionSupport{
@Action(value="/index")
public String index(){
System.out.println("ceshi1");
return "success";
}
}
訪問URL:http://localhost:8080/項目/welcome/index.do 可以正常訪問
但是為什麼 我訪問URL改為:
http://localhost:8080/項目/test/index.do
或
http://localhost:8080/項目/welcome/index11.do
也都可以訪問,這是問什麼啊?求大神指教
這應該是在配置文件中配置出來的效果