MyBatis核心配置檔案mybatis-config.xml
阿新 • • 發佈:2022-05-07
用別名可以簡化配置。
在mybatis-config.xml中寫入下面程式碼
<typeAliases> <package name="com.uestc.pojo"/> </typeAliases>
就可以在UserMapper.xml中,不用在resultType中"com.uestc.pojo.User",可以直接寫預設的類,不用區分大小寫。
<mapper namespace="com.uestc.mapper.UserMapper"> <select id="selectAll" resultType="user"> select * from tb_user; </select>
-
configuration(配置)
-
environments(環境配置)
-
environment(環境變數)
-
transactionManager(事務管理器)
-
dataSource(資料來源)
-
-
-
mappers(對映器)
核心配置檔案mybatis-config.xml。
<?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> <typeAliases>