petclinic-uncached

Details

diff --git a/src/main/resources/spring/business-config.xml b/src/main/resources/spring/business-config.xml
index 84b5003..f3424e1 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/datasource-config.xml b/src/main/resources/spring/datasource-config.xml
index 2efe120..c68c422 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"