From 96cd34dfd6c3ee9bf6a8877616e67e6eab797eb1 Mon Sep 17 00:00:00 2001 From: Mic <misvy@vmware.com> Date: Mon, 11 Mar 2013 11:07:39 +0800 Subject: [PATCH] renamed jdbc.properties -> data-access.properties --- src/main/resources/spring/business-config.xml | 2 +- .../spring/{jdbc.properties => data-access.properties} | 0 src/main/resources/spring/datasource-config.xml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/main/resources/spring/{jdbc.properties => data-access.properties} (100%) diff --git a/src/main/resources/spring/business-config.xml b/src/main/resources/spring/business-config.xml index 84b50037..f3424e1a 100644 --- a/src/main/resources/spring/business-config.xml +++ b/src/main/resources/spring/business-config.xml @@ -20,7 +20,7 @@ <!-- Configurer that replaces ${...} placeholders with values from a properties file --> <!-- (in this case, JDBC-related settings for the JPA EntityManager definition below) --> - <context:property-placeholder location="classpath:spring/jdbc.properties"/> + <context:property-placeholder location="classpath:spring/data-access.properties"/> <!-- enables scanning for @Transactional annotations --> <tx:annotation-driven /> diff --git a/src/main/resources/spring/jdbc.properties b/src/main/resources/spring/data-access.properties similarity index 100% rename from src/main/resources/spring/jdbc.properties rename to src/main/resources/spring/data-access.properties diff --git a/src/main/resources/spring/datasource-config.xml b/src/main/resources/spring/datasource-config.xml index 2efe1201..c68c4221 100644 --- a/src/main/resources/spring/datasource-config.xml +++ b/src/main/resources/spring/datasource-config.xml @@ -17,7 +17,7 @@ <!-- Configurer that replaces ${...} placeholders with values from a properties file --> <!-- (in this case, JDBC-related settings for the dataSource definition below) --> - <context:property-placeholder location="classpath:spring/jdbc.properties"/> + <context:property-placeholder location="classpath:spring/data-access.properties"/> <!-- DataSource configuration for Apache Commons DBCP. --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" -- GitLab