struts2整合spring的兩種方式

2021-06-26 10:13:34 字數 761 閱讀 4793

struts2整合spring有兩種方式

1、採用自動裝配方式,即不在spring中注入action;

好處在於:不必在struts.xml中寫了配置檔案後,又在spring的配置檔案中再寫一遍配置 如:

在struts.xml中寫

就可以了。

可以寫乙個baseaction 裡面放入所有的service介面,其他action繼承它就可以根據自動裝備的方式

自動注入自己需要的service.

2、在spring中注入action

缺點在於:

在struts.xml中寫

同時在spring配置檔案中需要寫

這樣看來配置檔案要比第一種要繁瑣一些。

但是據稱這種方式。適合配置aop的內容。而且struts2官方文件上也是採用的這種配置

struts.xml檔案

... /error.html

/pages/task/fileresult.jsp

...

新增struts2-spring整合的外掛程式:struts2-spring-plugin-2.0.12.jar,如果不使用這個外掛程式,則需要在struts.xml裡面配置:

fileresult.jsp檔案

Struts 2整合Spring 經典

struts 2整合spring struts 2框架為整合其他技術提供了良好的可擴充套件性,可以通過外掛程式的方式來實現同spring技術的整合。13.2.1 整合步驟 struts 2框架整合spring很簡單,下面是整合的步驟。1 複製檔案。複製struts2 spring plugin x ...

struts2整合spring步驟

1.匯入spring的核心包 spring.jar 二者整合開發所需的包 struts spring plugin 2.0.6.jar 2.修改web.xml配置檔案 配置spring載入上下文時的 org.springframework.web.context.contextloaderliste...

實現Spring與Struts 2整合

實現spring與struts 2整合 如何實現spring與struts 2框架的整合呢?其實非常簡單,這是因為struts 2框架主要是通過外掛程式來實現對其他框架的支援。spring框架與struts 2框架的整合過程非常簡單,因為struts 2框架中已經提供了關於spring框架的外掛程式...