diff --git a/src/main/resources/spring/business-config.xml b/src/main/resources/spring/business-config.xml index 84b50037344a1026bc7c0a6efdbf5dbf039debca..f3424e1a3a2792e9e02dea6af9b4b50e8f17921d 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 2efe12010fe16400078c36a7a9fb60f2da0f133d..c68c4221a046e6fedb065702fa1b7ca9cd9354db 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"