1
0

spring-manager-context.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <context:component-scan base-package="com.kmall.common.**, com.kmall.manager.**">
  17. </context:component-scan>
  18. <bean id="placeholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  19. <property name="locations">
  20. <list>
  21. <value>classpath:conf/db.properties</value>
  22. <value>classpath:conf/express-kdn.properties</value>
  23. <value>classpath:conf/wx-mp.properties</value>
  24. <value>classpath:conf/wx-global.properties</value>
  25. <value>classpath:conf/pingan-pay.properties</value>
  26. <value>classpath:conf/websocket.properties</value>
  27. <value>classpath:conf/cus.properties</value>
  28. <value>classpath:conf/redis.properties</value>
  29. <value>classpath:conf/print-ticket.properties</value>
  30. <value>classpath:conf/oms-merch.properties</value>
  31. <value>classpath:conf/common.properties</value>
  32. <value>classpath:conf/express-sf.properties</value>
  33. </list>
  34. </property>
  35. <property name="fileEncoding" value="UTF-8"/>
  36. </bean>
  37. </beans>