1
0

spring-express-sf.xml 1.4 KB

12345678910111213141516171819202122232425262728293031
  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="sfProdProperties" class="com.kmall.manager.manager.express.sf.properties.SFProdProperties">
  17. <property name="account" value="${sf.prod.account}"/>
  18. <property name="password" value="${sf.prod.password}"/>
  19. <property name="url" value="${sf.prod.url}"/>
  20. </bean>
  21. <bean id="sfDevProperties" class="com.kmall.manager.manager.express.sf.properties.SFDevProperties">
  22. <property name="account" value="${sf.dev.account}"/>
  23. <property name="password" value="${sf.dev.password}"/>
  24. <property name="url" value="${sf.dev.url}"/>
  25. </bean>
  26. </beans>