有意思的小记


关于char数组的初始化

1
char[] ch = new char[3];

该种初始化是得到每个元素的初始化为0,字符:’\u0000’ 0

1
char[] ch = {' ',' ',' '};

该种初始化则是得到每个元素是 空格,32

mybatis和mybatis-plus中mapper-locations的区别

在mybatis中是:

1
mybatis.mapper-locations=classpath:mapper/*Mapper.xml

而在mybatis-plus中是:

1
mybatis-plus.mapper-locations=classpath*:/*/mapper/*Mapper.xml

如果配置错误,会出现:

1
Property 'mapperLocations' was not specified or no matching resources found		

错误。表示mapperLocations未定义或未找到。即找不到自己所配置的xml文件位置。