此課程中講 ssh三大框架整合的載入流程,還可以,初步接觸的朋友可以聽一聽。
》 這幾節課都可以聽,可以快速了解一下 shh的搭建。
-------------測試 每個模組都測試
dao模組中也可以寫測試,選中某個單元檔案,右鍵建立 junit測試單元,選擇放在 test 目錄 下面是註解方式
有必要重複聽,看看test中是如何實現 自動注入物件的,之前本人測試時碰到不可以注入。
import在service 模組寫測試?? 可以寫。 下面是手動載入bean方式。static org.junit.assert.*;
import
org.junit.test;
import
org.junit.runner.runwith;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.test.context.contextconfiguration;
import
org.springframework.test.context.junit4.springjunit4classrunner;
@runwith(springjunit4classrunner.
class
)public
class
customerdaotest
classpath*@test
public
void
testfindone()
三大框架的整合
第一步 導包 包括28個ssh包,資料庫驅動包除外 第二步 配置檔案的準備 與struts2相關的配置檔案 web.xml 注意 在windows下不區分大小寫,但在linux下區分,首字母要小寫 struts.properties 關聯struts和spring struts.objectfact...
學習日記 三大框架的整合
1 新增jar包 commons fileupload 1.3.1.jar,commons io 2.2.jar,commons lang 2.4.jar commons lang3 3.2.jar,freemarker 2.3.19.jar,ognl 3.0.6.jar,struts2 core ...
SSH三大框架整合原理
三大框架整合原理 1 三大框架的作用 struts2 是乙個mvc框架 spring容器 1 利用 ioc和 di做到了完全的面向介面程式設計 2 由於spring 的宣告式事務處理,使程式設計師不再關注事務 3 dao 層和service 層的類是單例的,但是 action 層是多例 hibern...