Configuration.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE configuration
  3. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-config.dtd">
  5. <configuration>
  6. <properties resource="com/runzhixing/config/config.properties"></properties>
  7. <environments default="development">
  8. <environment id="development">
  9. <transactionManager type="JDBC">
  10. <property name="" value=""/>
  11. </transactionManager>
  12. <dataSource type="UNPOOLED">
  13. <property name="driver" value="${driver}"/>
  14. <property name="url" value="${url}"/>
  15. <property name="username" value="${username}"/>
  16. <property name="password" value="${password}"/>
  17. </dataSource>
  18. </environment>
  19. </environments>
  20. <mappers>
  21. <mapper resource="com/runzhixing/config/sqlxml/CNGStation_TranInfo.xml"/>
  22. <mapper resource="com/runzhixing/config/sqlxml/getRegion.xml"/>
  23. <mapper resource="com/runzhixing/config/sqlxml/Unit.xml"/>
  24. <mapper resource="com/runzhixing/config/sqlxml/InstallStation.xml"/>
  25. <mapper resource="com/runzhixing/config/sqlxml/CNGStationNew.xml"/>
  26. <mapper resource="com/runzhixing/config/sqlxml/CheckStation.xml"/>
  27. <mapper resource="com/runzhixing/config/sqlxml/getcheckinfo.xml"/>
  28. <mapper resource="com/runzhixing/config/sqlxml/ThirdInterface.xml"/>
  29. </mappers>
  30. </configuration>