連線點:struts2的action由spring產生
大致如下:首先加入各自所需的jar包,連線時要加入struts2-spring-plugin-x.x.x..jar
1. 修改web.xml加入struts的filter:
struts2
org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter
struts2
/*org.springframework.web.context.contextloaderlistener
contextconfiglocation
classpath:beans.xml
3. 規劃struts的action和jsp展現
4. 加入struts.xml
a.修改配置,由spring替代struts產生action物件
5. 修改action配置
a.把類名改為bean物件的名稱,這個時候就可以使用首字母小寫了
b.@scope(「prototype」)
不要忘記,可以建立多個不是單例
struts
的讀常量的順序:
1.
struts-default.xml
2.
struts-plugin.xml
3.
struts.xml
4.
struts.properties
5.
web.xml
spring和struts的整合
struts 2框架整合spring很簡單,下面是整合的步驟。1.複製檔案。複製struts2 spring plugin x x x.jar和spring.jar到web inf lib目錄下。其中的x對應了spring的版本號。還需要複製commons logging.jar檔案到web inf...
Spring整合Struts詳解
spring雖然也提供了自已的mvc元件,但一來spring的mvc元件過於繁瑣,二來是struts的使用者眾多,因此,很多專案還是選擇使用spring整合struts框架,而且spring可以無縫的整合strtus框架,二者結合成乙個更實際的j2ee開發平台 使用spring的web應用時,不用手...
Struts與Spring的整合
struts核心是mvc,struts與spring的整合就是把struts的action交給spring去管理,從而達到簡化程式的目的 一 配置spring上下文和監聽 配置spring上下文和監聽有兩種方式 方式一 web.xml web主要配置檔案 而主要用於監聽web的上下文,可用下面 代替...