Spring S2S整合開發

2021-09-01 20:19:38 字數 1241 閱讀 9939

[size=small][color=olive][color=red][b]

struts2.0 和 spring 整合開發

知識點:dao層的應用和基本的配置介紹

1、首先搭建基本的struts2.0 的web 執行環境 和 spring 的環境

2、配置 spring 在web 的執行環境:[/b][/color][/color][/size]

如:[size=small][color=red][b] 在web.xml 中配置:

[/b][/color][/size]

org.springframework.web.context.contextloaderlistener

[size=small][color=olive][b] 說明:

org.springframework.web.context.contextloaderlistener 該類是:

org.springframework.web-3.0.1.release-a.jar 下的

理解:好似事件中的監聽,等待觸發;

3、在struts.xml 中配置sturts2.0 與 spring 的管理關係

首先配置常量用來說明:struts 的物件由spring 來管理:

然後:action 中class 的值為:需要訪問的action 在spring容器中bean 的id,

通過容器來注入並實現呼叫;

例如:[/b][/color][/size]

[size=small][color=red][b]說明:useraction 對應:[/b][/color][/size]

[size=small][color=olive][b]注意:action會被多次的呼叫,而且直接關係到介面和資料庫資料的同步,所以此處必須明確的指出該bean 使用**模式,以保證資料的同步性:即設定:scope="prototype";

[/b][/color][/size]

說明:org.apache.commons.dbcp.basicdatasource 這個類屬於:commons-dbcp.jar包

[size=small][color=olive][b]5、在dao層 ,對資料進行增、刪、該、查[/b][/color][/size]

Spring S2SH框架整合(一)

1 思路 myeclipse環境,工程環境,tomcat環境的jdk版本保持一致 1 新建乙個專案,把編碼格式改為 utf 8 2 把 jsp 的編碼形式改為utf 8 3 在 lib 資料夾中建立小包,區分不同的 jar 包 4 建專案 s2sh sh,再建src config test 三個 s...

s2sh整合開發的配置

下面給出整合開發時struts 2 hibernate spring需要的jar,包太多不打字了,直接截圖。ps 我資料庫用的是mysql 的配置模版 第一步在 spring 中配置資料來源 第二步整合進 hibernate hibernate.dialect org.hibernate.diale...

S2SH整合步驟

s2sh 整合步驟 一.搭建開發環境 1.準備三者的 jar檔案 不要忘記相應資料庫的驅動.2.配置web.xml檔案,主要配置兩項內容 1 自動載入 spring 容器的 contextloaderlistener配置 2 應用 struts2 的過濾器 filterdispatcher配置 3....