MyEclipse中配置Struts2.2.1版本基本步骤:
1,首先就是要建立一个web project项目
2,设置jdk和servers路径,如果jdk和servers已经配置ok,跳过这一步骤。
在菜单中的window选项中配置jdk和servers
对于jdk,点击java-.>找到jre那个东西,然后输入你的jdk安装目录
对于servers,点击myEclipse中的servers中的tomcat,一定记得要选择上面的enable
然后,在找到你的安装地方
3,配置struts
一共要做四件事
第一个
首先就是在你的struts2解压的包中找到apps/struts2-blank-2.2.1.war/WEB-INF
/classes/struts.xml复制到你的myeclipse项目中的src中,然后要进行修改
第二件
在刚才的那个目录下将其lib中的类库文件全部复制到你的myeclipse/lib种就行了。
第三件
在你的项目中从刚才的目录下的web-xml中复制下面东西到你的web-xml里
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<? xml version = "1.0" encoding = "UTF-8" ?>
< web-app id = "WebApp_9" version = "2.4" xmlns = "http://java.sun.com/xml/ns/j2ee"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<!-- 定义Struts2核心filter -->
< display-name >Struts Blank</ display-name >
< filter >
< filter-name >struts2</ filter-name >
< filter-class >org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</ filter-class >
</ filter >
< filter-mapping >
< filter-name >struts2</ filter-name >
< url-pattern >/*</ url-pattern >
</ filter-mapping >
</ web-app >
|
第四件
修改你的struts2的配置文件也就是struts.xml,记得将其中的东西都删除或者注释
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<? xml version = "1.0" encoding = "UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
< struts >
<!-- 指定国际化资源文件的baseName为 globalMessage-->
< constant name = "struts.custom.i18n.resources" value = "globalMessage" />
<!-- 设置该应用使用的解码集 -->
<!-- 更改默认的临时文件存储路径 -->
<!-- 继承了struts-default,则该配置文件就可以自动拥有struts-default所有配置 -->
< package name = "lee" namespace = "/" extends = "struts-default" >
< action name = "upload" class = "com.whut.action.UploadAction" >
< result name = "input" >/upload.jsp</ result >
<!-- 动态设置Action属性值 在这里设置的值,在action中会自动获取-->
< param name = "savePath" >/upload</ param >
< result >/succ.jsp</ result >
</ action >
</ package >
</ struts >
|
本文转自 zhao_xiao_long 51CTO博客,原文链接:http://blog.51cto.com/computerdragon/1229489