org.kuali.rice.ksb.config.KsbRegistryServerSpringBeans.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2005-2013 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.opensource.org/licenses/ecl2.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:jms="http://www.springframework.org/schema/jms" xmlns:lang="http://www.springframework.org/schema/lang" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:oxm="http://www.springframework.org/schema/oxm" xmlns:task="http://www.springframework.org/schema/task" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.0.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"> <!-- Import Dependencies --> <import resource="classpath:org/kuali/rice/core/CommonSpringBeans.xml" /> <bean id="rice.ksb.registryDataSource" class="org.kuali.rice.core.framework.persistence.jdbc.datasource.PrimaryDataSourceFactoryBean"> <property name="preferredDataSourceParams"> <list> <value>rice.ksb.registry.datasource</value> </list> </property> <property name="preferredDataSourceJndiParams"> <list> <value>rice.ksb.registry.datasource.jndi.location</value> </list> </property> <property name="serverDataSource" value="false"/> </bean> <bean id="rice.ksb.serviceRegistry" class="org.kuali.rice.ksb.impl.registry.ServiceRegistryImpl" p:serviceRegistryDao-ref="rice.ksb.serviceRegistryDao" /> <bean id="rice.ksb.serviceRegistry.serviceDefinition" class="org.kuali.rice.ksb.api.bus.support.SoapServiceDefinition" p:serviceNameSpaceURI="#{ T(org.kuali.rice.ksb.api.KsbApiConstants$Namespaces).KSB_NAMESPACE_2_0 }" p:localServiceName="serviceRegistry" p:jaxWsService="true" p:busSecurity="${rice.ksb.serviceRegistry.security}" p:service-ref="rice.ksb.serviceRegistry" p:serviceVersion="${rice.version}" p:servicePath="#{ T(org.kuali.rice.ksb.api.KsbApiConstants).SERVICE_PATH_SOAP }" /> <bean id="rice.ksb.serviceRegistry.exporter" class="org.kuali.rice.ksb.api.bus.support.PropertyConditionalServiceBusExporter" p:serviceBus-ref="rice.ksb.serviceBus" p:serviceDefinition-ref="rice.ksb.serviceRegistry.serviceDefinition" p:exportIf="rice.ksb.serviceRegistry.expose" /> <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> <property name="interceptorNames"> <list> <idref bean="matchAllTxInterceptor" /> </list> </property> <property name="beanNames"> <list> <idref local="rice.ksb.serviceRegistry" /> </list> </property> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy