spring-oms-merch.xml 1.6 KB

1234567891011121314151617181920212223242526272829
  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"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:mvc="http://www.springframework.org/schema/mvc"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
  10. http://www.springframework.org/schema/context
  11. http://www.springframework.org/schema/context/spring-context-4.2.xsd
  12. http://www.springframework.org/schema/aop
  13. http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
  14. http://www.springframework.org/schema/mvc
  15. http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
  16. <bean id="omsMerchProperties" class="com.kmall.manager.manager.merch.OmsMerchProperties">
  17. <property name="merchSn" value="${merch.merchSn}"/>
  18. <property name="merchName" value="${merch.merchName}"/>
  19. <property name="merchShortName" value="${merch.merchShortName}"/>
  20. <property name="wxOrderResendUrl" value="${merch.wxOrderResendUrl}"/>
  21. <property name="md5Salt" value="${merch.md5Salt}"/>
  22. <property name="livenessRecognitionUrl" value="${merch.livenessRecognitionUrl}"/>
  23. <property name="quotaInquiryUrl" value="${merch.quotaInquiryUrl}"/>
  24. <property name="thirdSn" value="${merch.thirdSn}"/>
  25. <property name="queryOrderUrl" value="${merch.queryOrderUrl}"/>
  26. </bean>
  27. </beans>