margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 1 | <?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:context="http://www.springframework.org/schema/context" |
| 5 | xmlns="http://www.springframework.org/schema/beans" |
| 6 | xsi:schemaLocation="http://www.springframework.org/schema/beans |
margaretha | 3da7cd3 | 2018-10-22 17:42:52 +0200 | [diff] [blame] | 7 | http://www.springframework.org/schema/beans/spring-beans.xsd |
margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 8 | http://www.springframework.org/schema/context |
margaretha | 3da7cd3 | 2018-10-22 17:42:52 +0200 | [diff] [blame] | 9 | http://www.springframework.org/schema/context/spring-context.xsd |
margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 10 | http://www.springframework.org/schema/util |
margaretha | 3da7cd3 | 2018-10-22 17:42:52 +0200 | [diff] [blame] | 11 | http://www.springframework.org/schema/util/spring-util.xsd"> |
margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 12 | |
| 13 | |
| 14 | <context:component-scan base-package="de.ids_mannheim.korap" /> |
| 15 | <context:annotation-config /> |
| 16 | |
| 17 | <bean id="properties" |
| 18 | class="org.springframework.beans.factory.config.PropertiesFactoryBean"> |
| 19 | <property name="ignoreResourceNotFound" value="true"/> |
| 20 | <property name="locations"> |
| 21 | <array> |
| 22 | <value>classpath:kustvakt-lite.conf</value> |
| 23 | <value>file:./kustvakt-lite.conf</value> |
| 24 | </array> |
| 25 | </property> |
| 26 | </bean> |
| 27 | |
| 28 | <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> |
| 29 | <property name="properties"> |
| 30 | <ref bean="properties"/> |
| 31 | </property> |
| 32 | </bean> |
| 33 | |
| 34 | <bean id="kustvakt_auditing" |
| 35 | class="de.ids_mannheim.korap.interfaces.defaults.DefaultAuditing"> |
| 36 | </bean> |
| 37 | |
| 38 | <bean id="kustvakt_response" |
margaretha | 56e8e55 | 2017-12-05 16:31:21 +0100 | [diff] [blame] | 39 | class="de.ids_mannheim.korap.web.CoreResponseHandler"> |
margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 40 | <constructor-arg index="0" name="iface" ref="kustvakt_auditing"/> |
| 41 | </bean> |
| 42 | |
| 43 | <bean id="kustvakt_config" |
| 44 | class="de.ids_mannheim.korap.config.KustvaktConfiguration"> |
| 45 | <constructor-arg index="0" name="properties" ref="properties"/> |
| 46 | </bean> |
| 47 | |
margaretha | 56e8e55 | 2017-12-05 16:31:21 +0100 | [diff] [blame] | 48 | <bean id="kustvakt_rewrite" class="de.ids_mannheim.korap.resource.rewrite.RewriteHandler"> |
| 49 | <constructor-arg ref="kustvakt_config" /> |
| 50 | </bean> |
| 51 | |
margaretha | f92485a | 2017-11-14 17:12:36 +0100 | [diff] [blame] | 52 | <bean id="search_krill" |
| 53 | class="de.ids_mannheim.korap.web.SearchKrill"> |
| 54 | <constructor-arg value="${krill.indexDir}"/> |
| 55 | </bean> |
| 56 | |
| 57 | </beans> |