MyBatis学习

  1. 配置文件

  2. 使用MyBatis

  3. 使用xml

  4. 使用注解

    新建接口类,在接口中定义CRUD方法声明,

    然后使用注解:

    @Insert("insert into users(name, age) values (#{name}, #{age})")

    @Delete("delete from users where id = #{id}")

    @Update("update users set name = #{name}, age = #{age} where id = #{id}")

    @Select("select * from users where id = #{id}")

    在配置文件中注册该接口:

    <mapper class="mybatis_0100.user.UserMap"/>

     

  5. 使用properties文件存放数据库配置

    driver=com.mysql.jdbc.Driver
    url=jdbc:mysql://localhost:3306/mybatis
    username=root
    password=

     

  6. 启用别名

    在配置文件中添加标签typeAliases,有两种:package(给整个包起别名)和typeAlias(给特定的类起别名)

    <package name="mybatis_0100.user"/>
    <!-- <typeAlias type="mybatis_0100.user.User" alias="_user"/> -->

     

  7. 使用log输出

    添加log4j-1.2.13.jar,然后build path

    在src下添加log4j.xml文件

     

  8. 3

  9. 3

  10.  

你可能感兴趣的:(mybatis)