Spring整合web專案原理

2021-07-29 14:19:34 字數 422 閱讀 8793

(1)載入spring核心配置檔案

new物件,功能可以實現,但是效率低

(2)實現思想

把載入配置檔案和建立物件過程,在伺服器啟動時候就完成

(3)實現原理

a:servletcontext物件

b:***

c:具體使用

在伺服器啟動時,為每個專案建立乙個servletcontext物件

在servletcontext物件建立時候,使用***可以監聽到servletcontext物件在什麼時候建立

使用***監聽到servletcontext物件建立時候,載入spring配置檔案,把配置檔案配置物件建立。把建立出來的物件放到servletcontex域物件裡面(setattribute)

獲取物件時候,到servletcontext域得到(getattribute)

Spring整合web專案原理

1 載入spring核心配置檔案 1 new 物件,功能可以實現,效率很低 2 實現思想 把載入配置檔案和建立物件過程,在伺服器啟動時候完成。3 實現原理 1 servletcontext物件 2 3 具體使用 在伺服器啟動時候,為每個專案建立乙個servletcontext物件 在servletc...

Spring整合web專案

1 載入核心配置檔案 2 實現思想 把載入配置檔案和建立物件過程,在伺服器啟動的時候完成 3 實現原理 1 servletcontext物件 2 2 具體使用 演示問題 1 action呼叫service,service呼叫dao 每次訪問action物件都要載入一次spring配置檔案然後再操作 ...

spring 整合Junit,整合web

l 匯入jar包 基本 4 1 測試 spring test.jar 1.讓junit通知spring載入配置檔案 2.讓spring容器自動進行注入 l 修改測試類 package com.hcx import org.junit.test import org.junit.runner.runw...