Remove no longer applicable comments

This commit is contained in:
Oscar Gonzalez Fernandez 2013-05-29 01:10:18 +02:00
parent 5bc3d42bbe
commit 1045a1a171
2 changed files with 0 additions and 11 deletions

View file

@ -7,17 +7,11 @@
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<!-- Data source. SingleConnectionDataSource is a fast data source (it only
mantains one connection which is never closed) for testing the
bussiness layer. It cannot be used from more than one thread in
parallel.
-->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="${jdbcDriver.className}" p:url="${testDataSource.url}"
p:username="${testDataSource.user}" p:password="${testDataSource.password}" />
<!-- Hibernate Session Factory. -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"

View file

@ -7,11 +7,6 @@
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<!-- Data source. SingleConnectionDataSource is a fast data source (it only
mantains one connection which is never closed) for testing the
bussiness layer. It cannot be used from more than one thread in
parallel.
-->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="${jdbcDriver.className}" p:url="${testDataSource.url}"