摘要:
六、struts2后缀 1.一般情况下,访问helloworld这个action,需要我们url地址为xxx/helloworld.action或者xxx/helloworld,默认为action后缀和无后缀 2.如果希望改成.do的形式 2.1 方法1,struts.xml中 2.2方法2,web 阅读全文
摘要:
五、默认Action,当没有任何其它action与请求相对应时,则使用默认action 阅读全文
摘要:
四、指定多个配置文件 1.src目录下新建hello.xml 2.struts.xml中引入 阅读全文
摘要:
三、动态方法调用 action如果没在struts.xml里面配置method,则调用action时默认执行execute方法 而动态调用方法可以让一个Action处理多个请求,有三种动态调用方法 1.指定method属性 1.1在HelloWorldAction中添加函数 1.2在struts.x 阅读全文
摘要:
二、Action搜索顺序 如http://localhost:8080/HelloWorld/path1/path2/path3/helloworld.action 1.判断package是否存在,如path1/path2/path3/ 如果存在: 2.判断action是否存在,如果不存在则去默认n 阅读全文
摘要:
一、访问Servlet Api 1.struts2提供了三种方式去访问servlet api,ActionContext接口,Aware接口,ServletActionContext 在Strut2中访问Servlet API有三种方式: 1、通过ActionContext访问Servlet API 阅读全文