Spring教程-在 Spring 中使用 PreparedStatement 的示例
在 Spring 中使用 PreparedStatement 的示例
我们可以通过 JdbcTemplate 类的 execute() 方法的帮助,使用 Spring JdbcTemplate 执行参数化查询。要使用参数化查询,我们在 execute 方法中传递 PreparedStatementCallback 的实例。
使用参数化查询的 execute 方法的语法
public T execute(String sql,PreparedStatementCallback<T>);
PreparedStatementCallback 接口
它处理输入参数和输出结果。在这种情况下,您不需要关心单引号和双引号。
PreparedStatementCallback 接口的方法
它只有一个方法 doInPreparedStatement。该方法的语法如下:
public T doInPreparedStatement(PreparedStatement ps)throws SQLException, DataAccessException
在 Spring 中使用 PreparedStatement 的示例
我们假设您已在 Oracle10g 数据库中创建了以下表。
create table employee(
id number(10),
name varchar2(100),
salary number(10)
);
Employee.java
此类包含 3 个属性,带有构造函数和 setter 和 getter。
package cn.javatiku;
public class Employee {
private int id;
private String name;
private float salary;
//no-arg and parameterized constructors
//getters and setters
}
EmployeeDao.java
它包含一个属性 jdbcTemplate 和一个方法 saveEmployeeByPreparedStatement。您必须了解匿名类的概念才能理解该方法的代码。
package cn.javatiku;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.PreparedStatementCallback;
public class EmployeeDao {
private JdbcTemplate jdbcTemplate;
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
public Boolean saveEmployeeByPreparedStatement(final Employee e){
String query="insert into employee values(?,?,?)";
return jdbcTemplate.execute(query,new PreparedStatementCallback<Boolean>(){
@Override
public Boolean doInPreparedStatement(PreparedStatement ps)
throws SQLException, DataAccessException {
ps.setInt(1,e.getId());
ps.setString(2,e.getName());
ps.setFloat(3,e.getSalary());
return ps.execute();
}
});
}
}
applicationContext.xml
DriverManagerDataSource 用于包含有关数据库的信息,例如驱动程序类名、连接 URL、用户名和密码。
在 JdbcTemplate 类中有一个名为 datasource 的属性,类型为 DriverManagerDataSource。因此,我们需要在 JdbcTemplate 类中为 datasource 属性提供 DriverManagerDataSource 对象的引用。
在这里,我们在 EmployeeDao 类中使用 JdbcTemplate 对象,所以我们通过 setter 方法传递它,但您也可以使用构造函数。
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="ds" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url" value="jdbc:oracle:thin:@localhost:1521:xe" />
<property name="username" value="system" />
<property name="password" value="oracle" />
</bean>
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="ds"></property>
</bean>
<bean id="edao" class="cn.javatiku.EmployeeDao">
<property name="jdbcTemplate" ref="jdbcTemplate"></property>
</bean>
</beans>
Test.java
此类从 applicationContext.xml 文件获取 bean,并调用 saveEmployeeByPreparedStatement() 方法。
package cn.javatiku;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
public static void main(String[] args) {
ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml");
EmployeeDao dao=(EmployeeDao)ctx.getBean("edao");
dao.saveEmployeeByPreparedStatement(new Employee(108,"Amit",35000));
}
}