]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/org.argeo.server.hsqldb/META-INF/spring/hsqldb.xml
Prepare 0.2.2 release
[lgpl/argeo-commons.git] / server / modules / org.argeo.server.hsqldb / META-INF / spring / hsqldb.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
4 xmlns:tx="http://www.springframework.org/schema/tx"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
8 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
9 default-lazy-init="false">
10
11 <bean
12 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
13 <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
14 <property name="ignoreUnresolvablePlaceholders" value="true" />
15 <property name="locations">
16 <value>osgibundle:hsqldb.properties
17 </value>
18 </property>
19 </bean>
20
21 <bean id="dataSource" class="org.hsqldb.jdbc.jdbcDataSource">
22 <property name="database" value="${argeo.server.jdbc.url}" />
23 <property name="user" value="${argeo.server.jdbc.username}" />
24 <property name="password" value="${argeo.server.jdbc.password}" />
25
26 </bean>
27 </beans>