<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <!-- 分派bean配置 --> <context:property-placeholder location="classpath:com/pas/dispatch/db.properties, classpath:com/pas/dispatch/db2.properties" /> <bean id="dbutil" class="com.pas.dispatch.DBUtil"> <property name="drivername" value="${driver}" /> <property name="url" value="${url}" /> <property name="username" value="${db2.name}" /> <property name="passwd" value="${passwd}" /> </bean> </beans>