网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

struts2流程详解

时间:2024-10-14 00:51:27

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流程详解
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com