Struts2_学习笔记(一)——–学习工具下载、HelloWorld、运行机制
一、学习工具下载
- 下载struts2 http://struts.apache.org/download.cgi#struts217(选择下载full distribution)
- 下载myeclipse,http://www.myeclipseide.com
- 下载tomcat,http://tomcat.apache.org
- 下载xwork,http://www.opensymphony.com/xwork(要注意的是下载与struts2的对应版本)
- 我使用的是struts2.3.3版本,xwork就包含在struts中。下面的配置信息是根据struts2.3.3版本写的
##二、Struts2之 HelloWorld - 新建一个Web project,project name 为 Struts2_0100_Introduction
- 将下载的Struts解压,再将apps文件夹下面的struts2-blank.war解压。
- 将解压出来的WEB-INFàclasses下的struts.xml复制到Struts_0100_introduction下的src目录下。
- 将解压出来的WEB-INFàclasses下的所有jar文件复制到Struts2_0100_Introduction下WEB-INFàlib下,刷新project可以Referenced Libraries下看到刚才的类库
- 将解压出来的WEB-INF下web.xml中的标签中的内容复制到新建项目中的web.xml中
修改struts.xml:注释struts标签中的内容(注释的好处是可以在配置的时候参考原来的配置)。将中的内容复制到注释外,将action的name改为hello,删除下的内容,添加“/Hello.jsp”,新建一个名为Hello.jsp的文件。
struts.xml中的内容为:”
三、 Struts2运行机制
- 客户端发出请求“http://localhost:8080/Struts2_0100_Introduction/hello”,URL地址请求发送到tomcat,tomcat找到Struts2_0100_Introduction/hello,并将请求交给相应的web application。
- web.xml中的过滤“/*”即所有地址,并将请求交给org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter。
- org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter会在struts.xml查找相应的namespace,在相应的package中查找相应的action,并将其中的result返回到客户端
其他:
- 使用开发模式,及时对更改进行反馈
在struts.xml中添加 设置value的值为true - struts.xml不自动提示
- window – preferences – 搜索 catalog – add
- 选择key type为URI
- key: http://struts.apache.org/dtds/struts-2.3.dtd
- location: 对应的dtd文件,位于struts-core包中,解压开,指定相 应位置,如:F:\zk\struts-2.3.3\src\core\src\main\resources/struts-2.3.dtd
- 如果还是不可以,将struts.xml以Myeclipse XML Editor打开
- devMode设为true就会出问题空指针问题
- tomcat路径带了空格