1
0

spring-print-ticket.xml 1.3 KB

1234567891011121314151617181920212223242526
  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="printTicketProperties" class="com.kmall.common.service.print.ticket.PrintTicketProperties">
  17. <property name="address" value="${ticket.address}"/>
  18. <property name="summary" value="${ticket.summary}"/>
  19. <property name="serviceTel" value="${ticket.serviceTel}"/>
  20. <property name="url1" value="${ticket.url1}"/>
  21. <property name="url2" value="${ticket.url2}"/>
  22. <property name="url3" value="${ticket.url3}"/>
  23. </bean>
  24. </beans>