source: VirtualCollectionRegistry/tags/VirtualCollectionRegistry-0.4.0-alpha2/VirtualCollectionRegistry/src/main/webapp/WEB-INF/applicationContext.xml @ 5557

Last change on this file since 5557 was 5557, checked in by Twan Goosen, 10 years ago

tag for VCR alpha 2

  • Property svn:eol-style set to native
File size: 1.3 KB
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       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
6          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
7">
8    <!--
9    Spring configuration for Virtual Collection Registry
10    -->
11   
12    <!--
13    Bootstrap component scanning, so that Spring picks up @Component,
14    @Service, @Repository annotations on classes and creates beans for these, as
15    well as @Configuration annotations for classes defining beans and properties
16    -->
17    <context:component-scan base-package="eu.clarin.cmdi.virtualcollectionregistry" />
18   
19    <!--
20    Will enable reading properties from the servlet context (with fallback to a
21    packaged properties file). Used by EPIC persistent identifier provider.
22    -->
23    <bean class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
24        <!--<property name="location" value="classpath:vcr-defaults.properties"/>-->
25    </bean>
26               
27</beans>
Note: See TracBrowser for help on using the repository browser.