标签:javaee spring struts2 web.xml
最近买了一个阿里的云服务器。服务端是linux命令行环境,tomcat、mysql啥的都整好了。
就想自己写个web后台,制造一些网络数据啥的,给我的移动app-demo访问玩。
虽然以前学过web相关内容,但已经离开它三年多了,忘光光了。
特在此记录下学习、开发的一些流程,遇到的一些问题,和一些解决的方法。
1. 去struts官网下载了最新的完整zip。struts2.3.20
2. 在网络上下载了spring-framework3.2.8的完整zip。(官方最新4.x需要jdk1.8,我本地是1.7,不想捣腾了)
3. 去hibernate官网下载了最新的完整zip。hibernate-release-4.3.8
4. 用eclipse-javaee版,创建了一个动态的web工程,使用的是web-module2.5(这版自动有web.xml,
3.0以上支持web模块使用注解的形式,可以无需web.xml)
5. 导入struts的一些jar包(jar包都导入到/WebContent/WEB-INF/lib/)
<!-- struts2过滤器 -->
<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>
<!-- spring配置地址和相应的监听器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
JavaEE SSH框架整合(一) jar包导入 web.xml配置
标签:javaee spring struts2 web.xml
原文地址:http://blog.csdn.net/jjwwmlp456/article/details/44237367