📄 pluto-portal-driver-services-config.xml.svn-base
字号:
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"><!-- Licensed to the Apache Software Foundation (ASF) under one or morecontributor license agreements. See the NOTICE file distributed withthis work for additional information regarding copyright ownership.The ASF licenses this file to You under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance withthe License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express orimplied.See the License for the specific language governing permissions andlimitations under the License.--><!-- ************************************************************ NOTE: The following configuration file contains the spring bean configuration needed to run the pluto-portal in memory mode. Optional services are available which allow persistence to an rdbms, xml files, etc. . . however, we strongly recomend that if you are looking at these advanced features that you consider an enterprise portal such as Apache Jetspeed. Service Functions Include: - Preference Persistence - User Attribute Persistence - Portlet Registry - Page Registry ************************************************************ --><beans> <bean id="PlutoServices" class="org.apache.pluto.services.PlutoServices" singleton="true"> <constructor-arg><ref bean="RequiredContainerServices"/></constructor-arg> </bean> <bean id="RequiredContainerServices" name="OptionalContainerServices" class="org.apache.pluto.driver.services.container.ContainerServicesImpl" singleton="true"> <constructor-arg><ref bean="PortalContext"/></constructor-arg> <constructor-arg><ref bean="DriverConfiguration"/></constructor-arg> <constructor-arg><ref bean="CCPPProfileService"/></constructor-arg> <constructor-arg><ref bean="ContainerInvocationService"/></constructor-arg> </bean> <bean id="PortalContext" class="org.apache.pluto.driver.services.container.PortalContextImpl"> <constructor-arg><ref bean="DriverConfiguration"/></constructor-arg> </bean> <!-- ================================================ --> <!-- The single top element of the configuration tree --> <!-- ================================================ --> <bean id="DriverConfiguration" class="org.apache.pluto.driver.config.impl.DriverConfigurationImpl"> <!-- ===== Portal Services ===== --> <constructor-arg><ref bean="PortalURLParser"/></constructor-arg> <constructor-arg><ref bean="PropertyConfigService"/></constructor-arg> <constructor-arg><ref bean="RenderConfigService"/></constructor-arg> <constructor-arg><ref bean="SupportedModesService"/></constructor-arg> <constructor-arg><ref bean="SupportedWindowStatesService"/></constructor-arg> <!-- === Container Services === --> <constructor-arg><ref bean="PortalCallbackService"/></constructor-arg> <!-- Optional Container Services --> <property name="portletRegistryService"><ref bean="PortletRegistryService"/></property> <!-- <property name="portletPreferencesService"><ref bean="PortletPreferencesService"/></property> <property name="userAttributeService"><ref bean="UserAttributeService"/></property> --> </bean> <!-- ================================================ --> <!-- The single top element of the administration tree --> <!-- ================================================ --> <bean id="AdminConfiguration" class="org.apache.pluto.driver.config.impl.AdminConfigurationImpl"> <property name="renderConfigAdminService"><ref bean="RenderConfigService"/></property> </bean> <!-- ================================================ --> <!-- Portal Services injected into the Configuration --> <!-- ================================================ --> <bean id="PortalURLParser" class="org.apache.pluto.driver.url.impl.PortalURLParserImpl" factory-method="getParser" singleton="true"> </bean> <bean id="PropertyConfigService" class="org.apache.pluto.driver.services.impl.resource.PropertyConfigServiceImpl" singleton="true"> </bean> <bean id="RenderConfigService" class="org.apache.pluto.driver.services.impl.resource.RenderConfigServiceImpl" singleton="true"> </bean> <bean id="SupportedModesService" class="org.apache.pluto.driver.services.impl.resource.SupportedModesServiceImpl" singleton="true"> <constructor-arg><ref bean="PropertyConfigService"/></constructor-arg> </bean> <bean id="SupportedWindowStatesService" class="org.apache.pluto.driver.services.impl.resource.SupportedWindowStateServiceImpl" singleton="true"> <constructor-arg><ref bean="PropertyConfigService"/></constructor-arg> </bean> <!-- ================================================ --> <!-- Container Services injected into Configuration --> <!-- ================================================ --> <bean id="PortalCallbackService" class="org.apache.pluto.driver.services.container.PortalCallbackServiceImpl" singleton="true"> <constructor-arg><ref bean="RequestPropertyProvider"/></constructor-arg> </bean> <bean id="RequestPropertyProvider" class="org.apache.pluto.driver.services.container.RequestPropertyProviderImpl" singleton="true"> </bean> <bean id="CCPPProfileService" class="org.apache.pluto.core.DummyCCPPProfileServiceImpl" singleton="true"> </bean> <bean id='ContainerInvocationService' class='org.apache.pluto.core.ContainerInvocationServiceImpl' singleton='true'> </bean> <bean id="PortletRegistryService" class="org.apache.pluto.core.PortletContextManager" singleton="true"> </bean> </beans>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -