Mybatis(三)SqlMapConfig.xml配置文件

1. 配置内容

SqlMapConfig.xml中配置的内容和顺序如下:

 

properties(属性)

settings(全局配置参数)

typeAliases(类型别名)

typeHandlers(类型处理器)

objectFactory(对象工厂)

plugins(插件)

environments(环境集合属性对象)

environment(环境子属性对象)

transactionManager(事务管理)

dataSource(数据源)

mappers(映射器)

 

2. properties(属性)

 

SqlMapConfig.xml可以引用java属性文件中的配置信息如下:

 

classpath下定义db.properties文件,

 

jdbc.driver=com.mysql.jdbc.Driver

jdbc.url=jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8

jdbc.username=root

jdbc.password=root

SqlMapConfig.xml引用如下:

 


	
		
			
			
				
				
				
				
			
		
	

注意: MyBatis将按照下面的顺序来加载属性:

properties元素体内定义的属性首先被读取。

然后会读取properties元素中resourceurl加载的属性,它会覆盖已读取的同名属性。

 

 

3. typeAliases(类型别名)


3.1 mybatis支持别名:

别名

映射的类型

_byte

byte

_long

long

_short

short

_int

int

_integer

int

_double

double

_float

float

_boolean

boolean

string

String

byte

Byte

long

Long

short

Short

int

Integer

integer

Integer

double

Double

float

Float

boolean

Boolean

date

Date

decimal

BigDecimal

bigdecimal

BigDecimal

map

Map

 

3.2 自定义别名:

SqlMapConfig.xml中配置:

 


	
	
	
	
	

4. mappers(映射器)


Mapper配置的几种方法:

4.1 

使用相对于类路径的资源

如:

 

4.2 

使用mapper接口类路径

如:

 

注意:此种方法要求mapper接口名称和mapper映射文件名称相同,且放在同一个目录中。

 

4.3 

注册指定包下的所有mapper接口

如:

注意:此种方法要求mapper接口名称和mapper映射文件名称相同,且放在同一个目录中。

你可能感兴趣的:(Mybatis)