写的示例代码,格式与真实代码相同
package com.test.web.back;
public class TestAction extends ActionSupport{
public String test01(){
system.out.prientln("test");
return "hello";
}
}
这个action的访问路径是 test!test01.action
就是 类名!方法名.action
跳转的页面保存在在/WEB-INF/content/back/test-hello.jsp
就是/包名/类名-返回值.jsp
最后我想问的是,这种方式是怎么实现的,谢谢大神!