74 lines
3.4 KiB
XML
74 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
||
<!--
|
||
|
||
Copyright 2009-2012 the original author or authors.
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|
||
|
||
-->
|
||
|
||
<!DOCTYPE configuration
|
||
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
|
||
"http://mybatis.org/dtd/mybatis-3-config.dtd">
|
||
<configuration>
|
||
|
||
<settings>
|
||
<!-- 使全局的映射器启用或禁用缓存。 -->
|
||
<setting name="cacheEnabled" value="true"/>
|
||
|
||
<!-- 全局启用或禁用延迟加载。当禁用时,所有关联对象都会即时加载。 -->
|
||
<setting name="lazyLoadingEnabled" value="true"/>
|
||
|
||
<!-- 当启用时,有延迟加载属性的对象在被调用时将会完全加载任意属性。否则,每种属性将会按需要加载。 -->
|
||
<setting name="aggressiveLazyLoading" value="true"/>
|
||
|
||
<!-- 是否允许单条sql 返回多个数据集 (取决于驱动的兼容性) default:true -->
|
||
<setting name="multipleResultSetsEnabled" value="true"/>
|
||
|
||
<!-- 是否可以使用列的别名 (取决于驱动的兼容性) default:true -->
|
||
<setting name="useColumnLabel" value="true"/>
|
||
|
||
<!-- 允许JDBC 生成主键。需要驱动器支持。如果设为了true,这个设置将强制使用被生成的主键,有一些驱动器不兼容不过仍然可以执行。 default:false -->
|
||
<setting name="useGeneratedKeys" value="false"/>
|
||
|
||
<!-- 指定 MyBatis 如何自动映射 数据基表的列 NONE:不隐射 PARTIAL:部分 FULL:全部 -->
|
||
<setting name="autoMappingBehavior" value="PARTIAL"/>
|
||
|
||
<!-- 这是默认的执行类型 (SIMPLE: 简单; REUSE: 执行器可能重复使用prepared statements语句;BATCH: 执行器可以重复执行语句和批量更新) -->
|
||
<setting name="defaultExecutorType" value="SIMPLE"/>
|
||
|
||
<!-- 使用驼峰命名法转换字段。 -->
|
||
<setting name="mapUnderscoreToCamelCase" value="true"/>
|
||
|
||
<!-- 设置本地缓存范围 session:就会有数据的共享 statement:语句范围 (这样就不会有数据的共享 ) defalut:session -->
|
||
<setting name="localCacheScope" value="SESSION"/>
|
||
|
||
<!-- 设置但JDBC类型为空时,某些驱动程序 要指定值,default:OTHER,插入空值时不需要指定类型 -->
|
||
<setting name="jdbcTypeForNull" value="NULL"/>
|
||
</settings>
|
||
|
||
<!--通过指定包名设置,在相关映射时可使用不带包的简短名字:bean的首字母小写作为默认别名 -->
|
||
<typeAliases>
|
||
<package name="com.nis.domain"/>
|
||
</typeAliases>
|
||
|
||
<!-- 插件配置 -->
|
||
<plugins>
|
||
<plugin interceptor="com.nis.persistence.interceptor.PaginationInterceptor" />
|
||
<!-- 定时任务 更新保存 拦截器 -->
|
||
<plugin interceptor="com.nis.persistence.interceptor.ScheduleUpdateInterceptor" />
|
||
<!-- 定时任务 查询 -->
|
||
<plugin interceptor="com.nis.persistence.interceptor.ScheduleSelectInterceptor" />
|
||
</plugins>
|
||
|
||
</configuration> |