Created
March 16, 2018 08:29
-
-
Save haies/40d6d342b87e202cd905f9f9f694503c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> | |
<settings> | |
<setting name="cacheEnabled" value="false"/> | |
<setting name="lazyLoadingEnabled" value="false"/> | |
<setting name="aggressiveLazyLoading" value="true"/> | |
<setting name="logImpl" value="SLF4J"/> | |
<setting name="mapUnderscoreToCamelCase" value="true" /> | |
</settings> | |
<!-- 进行mybatis 配置 --> | |
<typeAliases> | |
<typeAlias type="com.zjchey.xxfy.onProcess.commons.utils.PageInfo" alias="PageInfo"/> | |
</typeAliases> | |
<typeHandlers> | |
<package name="com.zjchey.xxfy.onProcess.commons.type"/> | |
</typeHandlers> | |
<plugins> | |
<!--<plugin interceptcom.zjchey.xxfy.onProcessrocess.onProcess.commons.page.PageInterceptor">--> | |
<!--<property name="dialect" value="mysql"/>--> | |
<!--<property name="prop2" value="prop2"/>--> | |
<!--</plugin>--> | |
</plugins> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment