iBATIS-읽기 작업
지난 장에서 iBATIS를 사용하여 테이블에서 CREATE 연산을 수행하는 방법에 대해 논의했습니다. 이 장에서는 iBATIS를 사용하여 표를 읽는 방법을 설명합니다.
MySQL에는 다음과 같은 EMPLOYEE 테이블이 있습니다.
CREATE TABLE EMPLOYEE (
id INT NOT NULL auto_increment,
first_name VARCHAR(20) default NULL,
last_name VARCHAR(20) default NULL,
salary INT default NULL,
PRIMARY KEY (id)
);
이 테이블에는 다음과 같이 하나의 레코드 만 있습니다.
mysql> select * from EMPLOYEE;
+----+------------+-----------+--------+
| id | first_name | last_name | salary |
+----+------------+-----------+--------+
| 1 | Zara | Ali | 5000 |
+----+------------+-----------+--------+
1 row in set (0.00 sec)
직원 POJO 클래스
읽기 작업을 수행하려면 Employee.java의 Employee 클래스를 다음과 같이 수정합니다.
public class Employee {
private int id;
private String first_name;
private String last_name;
private int salary;
/* Define constructors for the Employee class. */
public Employee() {}
public Employee(String fname, String lname, int salary) {
this.first_name = fname;
this.last_name = lname;
this.salary = salary;
}
/* Here are the method definitions */
public int getId() {
return id;
}
public String getFirstName() {
return first_name;
}
public String getLastName() {
return last_name;
}
public int getSalary() {
return salary;
}
} /* End of Employee */
Employee.xml 파일
iBATIS를 사용하여 SQL 매핑 문을 정의하려면 Employee.xml 파일에 <select> 태그를 추가하고이 태그 정의 내에 데이터베이스에서 SQL SELECT 쿼리를 실행하기 위해 IbatisRead.java 파일에서 사용할 "id"를 정의합니다.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="Employee">
<insert id="insert" parameterClass="Employee">
INSERT INTO EMPLOYEE(first_name, last_name, salary)
values (#first_name#, #last_name#, #salary#)
<selectKey resultClass="int" keyProperty="id">
select last_insert_id() as id
</selectKey>
</insert>
<select id="getAll" resultClass="Employee">
SELECT * FROM EMPLOYEE
</select>
</sqlMap>
여기서는 SQL SELECT 문과 함께 WHERE 절을 사용하지 않았습니다. 다음 장에서는 SELECT 문과 함께 WHERE 절을 사용하는 방법과 해당 WHERE 절에 값을 전달하는 방법을 설명합니다.
IbatisRead.java 파일
이 파일에는 Employee 테이블에서 레코드를 읽는 응용 프로그램 수준 논리가 있습니다.
import com.ibatis.common.resources.Resources;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;
import java.io.*;
import java.sql.SQLException;
import java.util.*;
public class IbatisRead{
public static void main(String[] args)throws IOException,SQLException{
Reader rd = Resources.getResourceAsReader("SqlMapConfig.xml");
SqlMapClient smc = SqlMapClientBuilder.buildSqlMapClient(rd);
/* This would read all records from the Employee table. */
System.out.println("Going to read records.....");
List <Employee> ems = (List<Employee>)
smc.queryForList("Employee.getAll", null);
Employee em = null;
for (Employee e : ems) {
System.out.print(" " + e.getId());
System.out.print(" " + e.getFirstName());
System.out.print(" " + e.getLastName());
System.out.print(" " + e.getSalary());
em = e;
System.out.println("");
}
System.out.println("Records Read Successfully ");
}
}
컴파일 및 실행
위에서 언급 한 소프트웨어를 컴파일하고 실행하는 단계는 다음과 같습니다. 컴파일 및 실행을 계속하기 전에 PATH 및 CLASSPATH를 적절하게 설정했는지 확인하십시오.
- 위와 같이 Employee.xml을 만듭니다.
- 위와 같이 Employee.java를 생성하고 컴파일합니다.
- 위와 같이 IbatisRead.java를 만들고 컴파일합니다.
- IbatisRead 바이너리를 실행하여 프로그램을 실행하십시오.
다음과 같은 결과를 얻고 다음과 같이 EMPLOYEE 테이블에서 레코드를 읽습니다.
Going to read records.....
1 Zara Ali 5000
Record Reads Successfully