source: vlo/trunk/vlo_webapp/src/main/resources/applicationContext.xml @ 1853

Last change on this file since 1853 was 1853, checked in by herste, 12 years ago

blub

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
4
5    <!--
6                        Property placeholder that allows init parameters defined in servlet context to be used as property values
7                (in this case admin users list)
8                    -->
9    <bean class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
10       <property name="location" value="classpath:application.properties"/>
11    </bean>
12
13    <bean id="configuration" class="eu.clarin.cmdi.vlo.Configuration" factory-method="getInstance">
14        <property name="solrUrl" value="${eu.clarin.cmdi.vlo.solrUrl}" />
15        <!--<property name="solrUrl" value="http://localhost:8080/vlo_solr" />-->
16        <!--    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />-->
17        <!--    <property name="solrUrl" value="http://catalog.clarin.eu:8080/vlo_solr" />-->
18        <property name="IMDIBrowserUrl" value="http://corpus1.mpi.nl/ds/imdi_browser?openpath=" />
19        <property name="handleServerUrl" value="http://hdl.handle.net/" />
20        <property name="facetFields">
21            <!-- The possible values of facets are defined in the schema.xml of the solr_server installation.
22            If you want to add a facet you need to adjust this schema.xml and reindex the data.
23            -->
24            <list> <!-- List of facets to be shown as columns, the order specified is kept in the application -->
25                <value>collection</value>
26                <value>language</value>
27                <value>continent</value>
28                <value>genre</value>
29                <value>country</value>
30                <value>subject</value>
31                <value>organisation</value>
32                <value>resourceType</value>
33                <value>dataProvider</value>
34                <value>nationalProject</value>
35                <!--        <value>year</value>-->
36            </list>
37        </property>
38    </bean>
39
40</beans>
Note: See TracBrowser for help on using the repository browser.