struts2流程详解

2025-11-23 00:28:50

1、新建struts2Test web Project

struts2流程详解

2、把struts2的核心jar包拷贝进去

struts2流程详解

3、在web.xml中配置struts2的过滤器 filter

/*标示拦截所有URL 交给struts2的过滤器来进行处理

struts2流程详解

4、新建struts.xml 配置文件

测试的HelloStruts2Action 类

以及最终跳转的页面helloWorld.jsp

struts2流程详解

5、在struts.xml中 新建test空间,并配置第一个action test1

此处代码表示访问test1 的时候进入HelloStruts2Action 类 处理后 跳转到helloWorld.jsp 页面

struts2流程详解

6、HelloStruts2Action 类 需要继承 ActionSupport  , 由于struts.xml中没有指定特定的method方法,则进入默认的execute方法进行执行

struts2流程详解

7、页面当中只有一句话

struts2流程详解

8、当访问localhost:8080/struts2Test/test1/ 的时候,首先会被web.xml中的过滤器过滤 交给struts2来处理,进入struts.xml中找到 “/”命名空间 再找到对应的test1 ,进入HelloStruts2Action 类 处理后 跳转到helloWorld.jsp 页面

struts2流程详解

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
相关推荐
  • 阅读量:73
  • 阅读量:92
  • 阅读量:26
  • 阅读量:135
  • 阅读量:108
  • 猜你喜欢