Advertisement
xcooper

Untitled

Apr 24th, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.61 KB | None | 0 0
  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" xmlns:context="http://www.springframework.org/schema/context"
  4.     xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
  5.     xmlns:security="http://www.springframework.org/schema/security"
  6.     xmlns:jaxws="http://cxf.apache.org/jaxws"
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  8.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  9.         http://www.springframework.org/schema/context
  10.         http://www.springframework.org/schema/context/spring-context-3.0.xsd
  11.         http://www.springframework.org/schema/tx
  12.         http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
  13.         http://www.springframework.org/schema/aop
  14.         http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  15.         http://cxf.apache.org/jaxws
  16.         http://cxf.apache.org/schemas/jaxws.xsd
  17.         http://www.springframework.org/schema/security
  18.          http://www.springframework.org/schema/security/spring-security-3.1.xsd">
  19.  
  20.     <bean id="hibernateExpertWebserviceClient"
  21.         class="com.gss.tds.dc.restful.client.RestfulWebserviceClientFactoryBean">
  22.         <property name="baseAddress" value="${hibernate_expert.webservice.url}"></property>
  23.         <property name="basePackage" value="com.gss.tds.dc.free.report.hibernate.expert.webservice"></property>
  24.         <property name="cxfMessageBodyProvider">
  25.             <list>
  26.                 <bean class="com.fasterxml.jackson.jaxrs.json.JacksonJaxbJsonProvider"></bean>
  27.             </list>
  28.         </property>
  29.     </bean>
  30.  
  31. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement