七 Spring框架的配置檔案分開管理

2021-09-11 23:15:59 字數 1429 閱讀 8348

例如在src的目錄下又多建立了乙個配置檔案,現在是兩個核心的配置檔案,那麼載入這兩個配置檔案的方式有兩種!

例如將domain、dao、層的配置單獨放在各自的包下,然後在主配置檔案上將其引入,各配置存放路徑如下:

主配置檔案

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

xmlns

=""xmlns:xsi

=""xsi:schemalocation

=" /spring-beans.xsd"

>

resource

="blog/csdn/net/mchenys/domain/domaincontext.xml"

/>

resource

="blog/csdn/net/mchenys/dao/daocontext.xml"

/>

resource

="blog/csdn/net/mchenys/service/servicecontext.xml"

/>

beans

>

次配置檔案,就以最簡單的daocontext.xml為例吧

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

xmlns

=""xmlns:xsi

=""xsi:schemalocation

=" /spring-beans.xsd"

>

"userdao"

class

="blog.csdn.net.mchenys.dao.impl.userdaoimpl"

>

bean

>

beans

>

ok,這樣就完成分開管理了

也有2種方式,萬用字元方式和指定路徑方式

@test

public

void

test1()

@test

public

void

test2()

);user user = ctx.

getbean

(user.

class);

system.out.

println

(user);

userservice userservice = ctx.

getbean

(userservice.

class);

userservice.

sayhello()

;}

spring框架基本配置檔案語法

1.spring配置檔案的基本語法 配置檔案 xmlversion 1.0 encoding utf 8 beans xmlns xsi xmlns xsi schemalocation spring beans 4.2.xsd bean name user class cn.example bea...

spring配置檔案

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

spring配置檔案

context annotation config 是用於啟用那些已經在spring容器裡註冊過的bean上面的註解,也就是顯示的向spring註冊 autowiredannotationbeanpostprocessor commonannotationbeanpostprocessor pers...