MyBatis中log4j 和 参数 和 分页和别名 功能

时间:2021-04-20 14:13:39

1、配置全局文件,注意各个配置标签的顺序

  properties?, settings?, typeAliases?, typeHandlers?, objectFactory?,
    objectWrapperFactory?, reflectorFactory?, plugins?, environments?, databaseIdProvider?,
    mappers?

2、<settings>标签

  2.1 在mybatis全局配置文件中通过<settings>标签控制mybatis全局开关

  2.2  在mybatis 中开启log4j 日志功能

    2.2.1必须保证有log4j.jar

    2.2.2 在src下有log4j.properties文件

     <settings>
<setting name="logImpl" value="LOG4J"/>
</settings>

   2.3  log4j 中可以输出指定内容的日志(控制某个局部内容的日志级别)

            先在总体级别调成Error不输出无用信息

            在设置某个指定位置级别为DEBUG

      MyBatis中log4j 和 参数 和 分页和别名 功能

    2.3.1 命名级别(包级别):namespace属性值

    2.3.2 类级别 :namespace 属性值 . namespace类名

    2.3.3 方法级别:使用namespace 属性值+标签id属性值

  <mapper namespace="com.bjsxt.mapper.Peoplemapper">   这里的com.bjsxt.mapper相当于包名,Peoplemapper相当于类
<select id="c" resultType="com.bjsxt.pojo.People"> c 相当于方法名
select * from people
</select>
<select id="d" resultType="com.bjsxt.pojo.People">
select * from people where id=3 or id=4
</select> </mapper>

      

3、parameterType属性

  3.1 在xxxMapper.xml中<select><delete>等标签的 parameterType 可以控制参数类型

      如果参数是map     使用#{key}

      select * from people where id=#{id} and name=#{name}

  3.2  SqlSession的selectList()和selectOne() 的第二个参数和selectMap()的第三个参数都表示的参数。

    3.2.1实例

        测试
1 InputStream is = Resources.getResourceAsStream("mybatis.xml");
SqlSessionFactory factory=new SqlSessionFactoryBuilder().build(is);
SqlSession session=factory.openSession(); People p= session.selectOne("a.b.selById",2); 2代表参数
System.out.println(p.toString());
      xxxMapper.xml                  控制参数类型 int
<select id="selById" resultType="com.bjsxt.pojo.People" parameterType="int">
select * from people where id=#{0}   #{0}表示第一个参数(索引从0开始)如果参数是对象 #{属性名} 属性必须有getset
</select>                   #{param1}也可以表示第一个参数
                      如果只有一个参数(基本数据类型或String),mybatis对#{}里面没有要求只要有内容即可

     #{  }  和 ${  } 的区别  (${}很少使用)

        #{  } 获取参数的内容支持,索引获取,param1获取指定位置参数,并且SQL使用?占位符

        ${  } 字符串拼接不使用?默认找${内容}的get/set方法,如果写数字就是一个数字。

   3.3  如果在xml文件中出现 "<",">",双引号等 特殊字符时 可以使用 XML文件转义标签(xml自身的)

        <![CDATA[内容]]>  

4、分页功能

    4.1 不允许在关键字前后进行数学运算,需要在代码中计算完成后传递到xxxmapper.xml中

    4.2 在java代码中计算

          //显示几个
int pageSize=2;
//第几页
int pageNumber=1;
//如果希望传递多个参数,可以使用对象或map
Map<String,Object> map=new HashMap<>();
map.put("pageSize",pageSize);
map.put("pageStart",pageSize*(pageNumber-1));
List<People> p= session.selectList("a.b.page",map);
System.out.println(p);

     4.3 在xxxmapper.xml中

      

     <select id="page" resultType="com.bjsxt.pojo.People" parameterType="map">
select * from people limit #{pageStart),#{pageSize}
</select>

5、别名

  5.1 系统内置别名:别名全小写

  5.2 给某个类取别名

    5.2.1 alias="自定义 "

     <typeAliases>
<typeAlias type="com.bjsxt.pojo.People" alias="peo"/> 这是给指定类 取别名
</typeAliases>

     5.2.2 在xxxMapper.xml 中通过peo 引用People类

      <select id="page" resultType="peo" parameterType="map">
select * from people limit #{pageStart},#{pageSize}
</select>

    5.3 直接给某包下所有的类取别名  (别名为类名,区分大小写)

     <typeAliases>
<package name="com.bjsxt.pojo"/>  
</typeAliases>

      5.3.1 在xxxMapper,xml中引用

      <select id="page" resultType="People" parameterType="map">
select * from people limit #{pageStart},#{pageSize}
</select>

相关文章