You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
595 B

4 years ago
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.2//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<settings>
<setting name="cacheEnabled" value="false" />
<setting name="lazyLoadingEnabled" value="false" />
<setting name="callSettersOnNulls" value="true" />
<!-- 仅当select返回的对象是实体类的时候生效如果返回的时候map则不生效 -->
<setting name="mapUnderscoreToCamelCase" value="true" />
</settings>
<typeAliases>
</typeAliases>
<mappers>
</mappers>
</configuration>