Skip to content
mybatis-config.xml 871 B
Newer Older
zhuleizi's avatar
zhuleizi committed
<?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="db.properties"></properties>


  <typeHandlers>
    <typeHandler javaType="org.json.JSONObject" jdbcType="VARCHAR" handler="handler.TypeJsonHandler" />
  </typeHandlers>

  <environments default="development">
    <environment id="development">
      <transactionManager type="JDBC" />
      <dataSource type="POOLED">
        <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 class="mapper.Test0Mapper"/>
  </mappers>
</configuration>