程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 項目整合-SSH項目如何順利整合,出現包沖突該如何解決

項目整合-SSH項目如何順利整合,出現包沖突該如何解決

編輯:編程綜合問答
SSH項目如何順利整合,出現包沖突該如何解決

如何用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項目就搭建完成

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved