| 1234567891011121314151617181920212223242526272829303132 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 
- <beans xmlns="http://www.springframework.org/schema/beans"
 
- 	   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
 
- 	   xmlns:tx="http://www.springframework.org/schema/tx"
 
- 	   xsi:schemaLocation="
 
- 	http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 
- 	http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
 
- 	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
 
- 	<!-- 支付适配器 -->
 
- 	<bean id="httppayApater" class="com.miniframe.httpclient.HttpTransmitter">
 
- 		<!-- 交易码转化为URI -->
 
- 		<property name="code2uri" value="false"/>	
 
- 		<!-- 通讯类型 -->
 
- 		<property name="transType" value="json"/>	
 
- 		<!-- 交易码的key -->
 
- 		<property name="transCode" value="transCode"/>	
 
- 		<!-- 客户端http头传送内容 -->
 
- 		<property name="clienthttpHead" value="x-auth-token,x-auth-user"/>					
 
- 		<!-- 服务器端http返回头传送内容 -->
 
- 		<property name="serverhttpHead" value=""/>		
 
- 		<!-- 连接主机IP -->
 
- 		<property name="host" value="192.168.0.140"/>		
 
- 		<!-- 连接主机port -->
 
- 		<property name="port" value="32473"/>
 
- 		<!-- 请求URI -->
 
- 		<property name="uri" value="/TransServlet"/>
 
- 		<!-- 通讯服务实现类 -->
 
- 		<property name="clientTransmeter" ref="httpAsyncClient"/>		
 
- 	</bean>
 
- </beans>
 
 
  |