如何用myeclipse順搭建一個SSH項目:首先從Myeclipse新建項目...
1 新建一個項目Project
2 首先導入struts框架 --> 需要導入的包有(struts2 Core Libraries;Struts2 Spring Libraries 兩個即可)
3 導入struts包後web.xml中有struts過濾器
struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
struts2
/*<!-- .action不適用struts2標簽;/全部過濾切使用struts標簽 -->
4 導入Spring框架 --> 需要導入的包有(Spring 2.5 AOP Libraries; Spring 2.5 Core Libraries;
Spring 2.5 Persistence Core Libraries; Spring 2.5 Persistence JDBC Libraries;
Spring 2.5 WEB Libraries 五個包).
5 在web.xml中寫入Spring監聽器
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
6 導入Hibernate框架 --> 需要導入的包有(Hibernate 3.2 Annotations&EntityManager;Hibernate3.2 Core Libraries
Hibernate 3.2 Advanced Support Libraries 三個包)
7 導入數據庫連接包.
8簡單的ssh項目就搭建完成