Skip to content
Snippets Groups Projects
Commit 96cd34df authored by Mic's avatar Mic
Browse files

renamed jdbc.properties -> data-access.properties

parent 3fe122db
No related branches found
No related tags found
No related merge requests found
......@@ -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 />
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment