📅  最后修改于: 2020-11-16 08:13:07             🧑  作者: Mango
要使用iBATIS执行任何创建,读取,更新和删除(CRUD)操作,您需要创建与该表相对应的普通旧Java对象(POJO)类。此类描述了将“建模”数据库表行的对象。
POJO类将具有执行所需操作所需的所有方法的实现。
让我们假设我们在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)
);
我们将在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;
}
} /* End of Employee */
您可以定义方法来设置表中的各个字段。下一章将说明如何获取各个字段的值。
要使用iBATIS定义SQL映射语句,我们将使用
insert into EMPLOYEE(first_name, last_name, salary)
values (#first_name#, #last_name#, #salary#)
select last_insert_id() as id
在这里, parameterClass-根据需要可以将其值作为字符串,int,float,double或任何类对象。在此示例中,我们将在调用SqlMap类的insert方法时将Employee对象作为参数传递。
如果您的数据库表使用IDENTITY,AUTO_INCREMENT或SERIAL列,或者您已定义SEQUENCE / GENERATOR,则可以在<插入>语句中使用
该文件将具有应用程序级逻辑以将记录插入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 IbatisInsert{
public static void main(String[] args)throws IOException,SQLException{
Reader rd = Resources.getResourceAsReader("SqlMapConfig.xml");
SqlMapClient smc = SqlMapClientBuilder.buildSqlMapClient(rd);
/* This would insert one record in Employee table. */
System.out.println("Going to insert record.....");
Employee em = new Employee("Zara", "Ali", 5000);
smc.insert("Employee.insert", em);
System.out.println("Record Inserted Successfully ");
}
}
这是编译和运行上述软件的步骤。在继续进行编译和执行之前,请确保已正确设置了PATH和CLASSPATH。
您将得到以下结果,并且将在EMPLOYEE表中创建一条记录。
$java IbatisInsert
Going to insert record.....
Record Inserted Successfully
如果您检查EMPLOYEE表,它将显示以下结果-
mysql> select * from EMPLOYEE;
+----+------------+-----------+--------+
| id | first_name | last_name | salary |
+----+------------+-----------+--------+
| 1 | Zara | Ali | 5000 |
+----+------------+-----------+--------+
1 row in set (0.00 sec)