Flume学习笔记

一、环境搭建

在这里插入图片描述
创建项目MyBatis_01,然后创建源码包config用来存放项目所用到的配置文件并首先创建日志文件log4j.xml。创建lib文件夹用来存放所需用到的Jar。

二、数据库表创建

使用MySQL创建如下数据库表
在这里插入图片描述


CREATE TABLE tbl_employee (
  id int(11) PRIMARY KEY AUTO_INCREMENT,
  last_name varchar(255) ,
  gender char(1) ,
  email varchar(255) 
);

三、POJO编写


package com.atguigu.mybatis.bean;

public class Employee {
    private Integer id;
    private String lastName;    //该属性和数据库表的对应字段名last_name不同
    private String gender;
    private String email;
    
    public Employee() {
        super();
    }

    public Employee(Integer id, String lastName, String gender, String email) {
        super();
        this.id = id;
        this.lastName = lastName;
        this.gender = gender;
        this.email = email;
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getLastName() {
        return lastName;
    }

    public void setLastName(String lastName) {
        this.lastName = lastName;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    @Override
    public String toString() {
        return "Employee [id=" + id + ", lastName=" + lastName + ", gender=" + gender + ", email=" + email + "]";
    }
    
}

四、MyBatis全局配置文件创建

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>
  <environments default="development">
    <environment>
      <!-- 配置事务管理器,采用的是JDBC的管理器方式 -->
      <transactionManager type="JDBC"/>
     <!--  POOLED代表采用MyBatis内部提供的连接池方式 -->
      <dataSource type="POOLED">
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis"/>
        <property name="username" value="root"/>
        <property name="password" value="abc123!"/>
      </dataSource>
    </environment>
  </environments>
 <!--  引入映射器 包名+文件名-->
  <mappers>
    <mapper resource="EmployeeMapper.xml"/>
  </mappers>
</configuration>

五、映射器创建

映射器实现将SQL查询到的结果映射为一个POJO,或者将POJO的数据插入到数据库中,并定义一些关于缓存等的重要内容。

首先先编写映射器接口:


package com.atguigu.mybatis.mapper;

import com.atguigu.mybatis.bean.Employee;

public interface EmployeeMapper {
    public Employee getEmpById(Integer id);
}

第二步则是编写XML映射文件EmployeeMapper.xml,内容如下所示:


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  
<!-- 
1.namespace为命名空间,为映射接口的全类名
2.id为唯一标识,与EmployeeMapper接口中的对应方法名相同
3.resultType为查询后的返回类型
4.#{id}指从传递过来的参数中取出id值
-->
<mapper namespace="com.atguigu.mybatis.mapper.EmployeeMapper">
  <select resultType="com.atguigu.mybatis.bean.Employee">
    select id,lastName, gender, email from tbl_employee where id = #{id}
  </select>
</mapper>

六、测试


package com.atguigu.mybatis.test;

public class MyBatisTest {

    @Test
    public void test() throws IOException {
        //1.根据MyBatis的配置文件,即mybatis-config.xml创建SqlSessionFactory
        SqlSessionFactory sqlSessionFactory = getSqlSessionFactory();
        //2.获取session实例开启会话,其能直接执行*已经映射的SQL语句*
        SqlSession session = sqlSessionFactory.openSession();
        try {
            //3.获取接口的实现类对象
            EmployeeMapper employeeMapper = session.getMapper(EmployeeMapper.class);
            //4.执行查询操作
            Employee employee = employeeMapper.getEmpById(1);
            System.out.println(employee);
        } finally {
            //4.关闭会话session
            session.close();
        }
    }
    //根据MyBatis的配置文件,即mybatis-config.xml创建SqlSessionFactory
    public SqlSessionFactory getSqlSessionFactory() throws IOException {
        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        return sqlSessionFactory;
    }

}

运行结果:
在这里插入图片描述
注意:运行后lastName的值为空,这是因为我们在Employee类中的lastName属性和数据库的last_name字段名称不同,这里我们可以更改EmployeeMapper文件中的select语句为:


 select id,last_name lastName, gender, email from tbl_employee where id = #{id}

后面讲到配置文件时可以用标签属性的设置来更为方便地处理这个问题。


补充:我们也可以使用注解来实现映射器
使用注解的方式只需要一个接口就可以注入SQL。首先编写EmployeeMapperAnnoation接口文件。


package com.atguigu.mybatis.mapper;

public interface EmployeeMapperAnnoation {
    @Select("select id,last_name lastName, gender, email from tbl_employee where id = #{id}")
    public Employee selectEmp(Integer id);
}

在基本配置文件中引入映射器:


<mapper class="com.atguigu.mybatis.mapper.EmployeeMapperAnnoation"/>

测试代码:


@Test
public void test01() throws IOException {
    //1.根据MyBatis的配置文件,即mybatis-config.xml创建SqlSessionFactory
    SqlSessionFactory sqlSessionFactory = getSqlSessionFactory();
    //2.获取session实例,能直接执行*已经映射的SQL语句*
    SqlSession session = sqlSessionFactory.openSession();
    try {
        //3.获取接口的实现类对象
        EmployeeMapperAnnoation employeeMapper = session.getMapper(EmployeeMapperAnnoation.class);
        //4.执行查询操作
        Employee employee = employeeMapper.getEmpById(1);
        System.out.println(employee);
    } finally {
        //4.关闭会话session
        session.close();
    }
}

来源:https://blog.csdn.net/weixin_40374341/article/details/86527843

转载于:https://www.cnblogs.com/datiangou/p/10289554.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值