source: oceandb/webapproot/WEB-INF/project-managers.xml @ 47

Last change on this file since 47 was 47, checked in by jazz, 15 years ago
  • blank new project
File size: 1010 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4Server-side manager bean definitions.  These are only to be used at runtime.
5-->
6<beans xmlns="http://www.springframework.org/schema/beans"
7        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8        xmlns:aop="http://www.springframework.org/schema/aop"
9        xsi:schemaLocation="http://www.springframework.org/schema/beans
10                http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
11                http://www.springframework.org/schema/aop
12                http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
13
14    <!-- extend beans to have the proper names; add in server-specific information -->
15    <bean id="serviceManager"
16            class="com.wavemaker.runtime.service.ServiceManager"
17            scope="singleton"
18            lazy-init="true"
19            parent="serviceManagerBase">
20        <property name="services">
21            <list merge="true">
22            </list>
23        </property>
24    </bean>
25</beans>
Note: See TracBrowser for help on using the repository browser.