Spring配置檔案的拆分

2021-08-27 15:05:34 字數 490 閱讀 9498

有兩種拆分方式,也就路徑不同而已。

一、其中spring配置檔案在src目錄下,spring是個包

在web.xml檔案中

contextconfiglocation

org.springframework.web.context.contextloaderlistener

二、其中spring的配置檔案在webroot中的web-inf中,springconfig是個資料夾。

在web.xml檔案中

contextconfiglocation

org.springframework.web.context.contextloaderlistener

每個spring的配置檔案中都可以包含類似的**。

<?xml version="1.0" encoding="utf-8"?>

Web專案拆分Spring配置檔案

將乙個大的配置檔案根據什麼拆成多個?1.三層結構 ui html css jsp servlet 如 service 如 dao 如 公共配置 資料庫等.如 2.功能結構 如 將多個小的配置檔案怎麼載入?方式一 在web.xml檔案中配置 或 推薦 方式二 一般不使用 然後在主配置檔案中使用引入其他...

拆分配置檔案

spring就提供了這樣乙個listener org.springframework.web.context.contextloaderlistener listener在spring web x.x.x.release.jar包下,因此我們使用spring開發web專案時,至少需要在web inf...

spring配置檔案

1 配置檔案的簡化 1 屬性的 property name foo value foovalue value property 簡化為 property name foo value foovalue 2 引用bean property name foo ref bean foobean prope...