Changeset 48 for oceandb/webapproot/WEB-INF
- Timestamp:
- Jan 21, 2009, 1:03:14 PM (16 years ago)
- Location:
- oceandb/webapproot/WEB-INF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
oceandb/webapproot/WEB-INF/project-managers.xml
r47 r48 1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <!-- 4 Server-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"> 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> 2 <beans xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans"> 3 <bean scope="singleton" parent="serviceManagerBase" class="com.wavemaker.runtime.service.ServiceManager" id="serviceManager"> 20 4 <property name="services"> 21 5 <list merge="true"> 6 <value>runtimeService</value> 22 7 </list> 23 8 </property> 24 9 </bean> 10 <bean scope="singleton" parent="typeManagerBase" class="com.wavemaker.runtime.service.TypeManager" id="typeManager"> 11 <property name="types"> 12 <map merge="true"> 13 <entry key="runtimeService"> 14 <list> 15 <value>com.wavemaker.runtime.service.PagingOptions</value> 16 <value>com.wavemaker.runtime.service.PropertyOptions</value> 17 </list> 18 </entry> 19 </map> 20 </property> 21 </bean> 25 22 </beans> -
oceandb/webapproot/WEB-INF/project-services.xml
r47 r48 1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <!-- 4 Server definition of all services; 5 --> 6 7 <beans xmlns="http://www.springframework.org/schema/beans" 8 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 9 xmlns:util="http://www.springframework.org/schema/util" 10 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd"> 11 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> 2 <beans xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans"> 3 <import resource="classpath:com/wavemaker/runtime/service/runtimeServiceBean.xml"/> 12 4 </beans>
Note: See TracChangeset
for help on using the changeset viewer.