blob: 55481894c36ec9ec9ee0c44720f35882396589e6 [file] [log] [blame]
Michael Hanl72c7b832015-09-03 08:42:15 +02001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xmlns:util="http://www.springframework.org/schema/util"
4 xmlns="http://www.springframework.org/schema/beans"
5 xsi:schemaLocation="http://www.springframework.org/schema/beans
6 http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
7 http://www.springframework.org/schema/util
8 http://www.springframework.org/schema/util/spring-util-4.0.xsd">
9
10
Michael Hanld6eadd52015-11-11 18:30:33 +010011 <!--<util:properties id="props" location="classpath:kustvakt.conf"/>-->
12
13 <bean id="props"
14 class="org.springframework.beans.factory.config.PropertiesFactoryBean">
15 <property name="ignoreResourceNotFound" value="true"/>
16 <property name="locations">
17 <array>
18 <value>classpath:kustvakt.conf</value>
19 <value>file:./config/kustvakt.conf</value>
20 </array>
21 </property>
22 </bean>
Michael Hanl72c7b832015-09-03 08:42:15 +020023
24 <bean id="kustvakt_auditing"
25 class="de.ids_mannheim.korap.interfaces.defaults.DefaultAuditing">
26 </bean>
27
28 <bean id="kustvakt_config"
29 class="de.ids_mannheim.korap.config.KustvaktConfiguration">
30 <property name="properties" ref="props"/>
31 </bean>
32
33 <bean name="kustvakt_encryption"
34 class="de.ids_mannheim.korap.interfaces.defaults.DefaultEncryption">
35 </bean>
36</beans>