mybatisPeizhixml文件的层次结构
Posted 游浪踏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatisPeizhixml文件的层次结构相关的知识,希望对你有一定的参考价值。
<?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/><!-- 属性 -->
<settings/><!-- 设置 -->
<typeAliases/><!-- 类型别名 -->
<typeHandlers/><!-- 类型处理器 -->
<objectFactory/><!-- 对象工厂 -->
<plugins/><!-- 插件 -->
<environments default=""><!-- 配置环境 -->
<environment id=""><!-- 环境变量 -->
<transactionManager type=""/><!-- 事物管理器 -->
<dataSource type=""/><!-- 数据源 -->
</environment>
</environments>
<databaseIdProvider type=""/><!-- 数据库厂商标识 -->
<mappers/><!-- 映射器 -->
</configuration>
以上是关于mybatisPeizhixml文件的层次结构的主要内容,如果未能解决你的问题,请参考以下文章