struts2流程详解
的有关信息介绍如下:
struts2流程详解
1.新建struts2Test web Project
2.把struts2的核心jar包拷贝进去
3.在web.xml中配置struts2的过滤器 filter
/*标示拦截所有URL 交给struts2的过滤器来进行处理
4.新建struts.xml 配置文件
测试的HelloStruts2Action 类
以及最终跳转的页面helloWorld.jsp
5.在struts.xml中 新建test空间,并配置第一个action test1
此处代码表示访问test1 的时候进入HelloStruts2Action 类 处理后 跳转到helloWorld.jsp 页面
6.HelloStruts2Action 类 需要继承 ActionSupport , 由于struts.xml中没有指定特定的method方法,则进入默认的execute方法进行执行
7.页面当中只有一句话
8.当访问localhost:8080/struts2Test/test1/ 的时候,首先会被web.xml中的过滤器过滤 交给struts2来处理,进入struts.xml中找到 “/”命名空间 再找到对应的test1 ,进入HelloStruts2Action 类 处理后 跳转到helloWorld.jsp 页面



