eclipse-ee + tomcat8.0.29 + struts2.3.24配置

web开发可以用myeclipse和eclipse,个人更编好免费的eclipse,eclipse有很多版本ee,se,android,pyton,php的版本,

1。。。下载地址:http://www.eclipse.org/downloads/

前提你已经配置好了jdk,不会的可以先去配置!

2。。。。。下载tomcat地址http://tomcat.apache.org/我的是tomcat8.0.29,有两个版本安装版和便捷版。我推荐便捷版(.zip)

解压到一个地方,下面就是eclipse下配置tomcat路径:

可以添加tomcat8.0

配置完后,下面就是struts2.3

3.。。。下载struts2地址http://struts.apache.org/

下载后文件夹结构

下面是war(tomcat项目特有的格式和zip一样),解压就行了。在eclipse-ee创建 Dynamic Web project,细节不讲了,下面就是把war下的

拷贝到webcontent---------->web-inf---------->lib下注意::::不能把所有的struts下的lib的jar包全部考过去,要不然会有错。在这迷茫了很长时间

webcontent---------->web-inf-------->web.xml配置

添加这段:

<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>
还有就是
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
不要和以前的版本一样,要不然有错,高版本的是这个。低版本的不一样。。。

下面就是在src下创建struts.xml

struts.xml网上有很多模版,自己查一下。就是他的位置一定要对。

下面就是创建action和hello.jsp就不介绍了。启动项目


你可能感兴趣的:(eclipse,+,tomcat8.0.29,struts2.3.24,web创建)