多语言展示
当前在线:888今日阅读:113今日分享:31

struts2流程详解

struts2流程详解
方法/步骤
1

1.新建struts2Test web Project

2

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

3

3.在web.xml中配置struts2的过滤器 filter/*标示拦截所有URL 交给struts2的过滤器来进行处理

4

4.新建struts.xml 配置文件测试的HelloStruts2Action 类以及最终跳转的页面helloWorld.jsp

5

5.在struts.xml中 新建test空间,并配置第一个action test1此处代码表示访问test1 的时候进入HelloStruts2Action 类 处理后 跳转到helloWorld.jsp 页面

6

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

7

7.页面当中只有一句话

8

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

推荐信息