| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE configuration
- PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-config.dtd">
- <configuration>
- <properties resource="com/runzhixing/config/config.properties"></properties>
- <environments default="development">
- <environment id="development">
- <transactionManager type="JDBC">
- <property name="" value=""/>
- </transactionManager>
- <dataSource type="UNPOOLED">
- <property name="driver" value="${driver}"/>
- <property name="url" value="${url}"/>
- <property name="username" value="${username}"/>
- <property name="password" value="${password}"/>
-
-
- </dataSource>
- </environment>
- </environments>
- <mappers>
- <mapper resource="com/runzhixing/config/sqlxml/CNGStation_TranInfo.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/getRegion.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/Unit.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/InstallStation.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/CNGStationNew.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/CheckStation.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/getcheckinfo.xml"/>
- <mapper resource="com/runzhixing/config/sqlxml/ThirdInterface.xml"/>
- </mappers>
- </configuration>
|