source: vlo/branches/vlo-3.0/vlo-web-app/src/main/webapp/WEB-INF/applicationContext.xml @ 4583

Last change on this file since 4583 was 4583, checked in by twagoo, 10 years ago

new vlo config factory to support partial configuration via context parameters

File size: 917 bytes
Line 
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"
4       xmlns:context="http://www.springframework.org/schema/context"
5
6       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
8"> 
9    <context:annotation-config/>
10    <bean class="eu.clarin.cmdi.vlo.config.VloSpringConfig"/>   
11   
12    <!-- Bean to enable context parameters as a properties source -->
13    <bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
14        <property name="ignoreUnresolvablePlaceholders" value="true" />
15        <property name="ignoreResourceNotFound" value="true"/>
16    </bean>
17</beans>
Note: See TracBrowser for help on using the repository browser.