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

Last change on this file since 957 was 957, checked in by patdui, 14 years ago
  • bumped version number
  • Property svn:executable set to *
File size: 1.3 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  <bean id="configuration" class="eu.clarin.cmdi.vlo.Configuration" factory-method="getInstance">
6    <property name="solrUrl" value="http://localhost:8080/vlo_solr" />
7<!--    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />-->
8<!--    <property name="solrUrl" value="http://catalog.clarin.eu:8080/vlo_solr" />-->
9    <property name="IMDIBrowserUrl" value="http://corpus1.mpi.nl/ds/imdi_browser?openpath=" />
10    <property name="facetFields">
11    <!-- The possible values of facets are defined in the schema.xml of the solr_server installation.
12         If you want to add a facet you need to adjust this schema.xml and reindex the data.
13         -->
14      <list> <!-- List of facets to be shown as columns, the order specified is kept in the application -->
15        <value>origin</value>
16        <value>organisation</value>
17        <value>continent</value>
18        <value>genre</value>
19        <value>country</value>
20        <value>subject</value>
21        <value>language</value>
22<!--        <value>year</value>-->
23      </list>
24    </property>
25  </bean>
26
27</beans>
Note: See TracBrowser for help on using the repository browser.