Spring 提供了另一种通过命名参数插入数据的方法。这样,我们使用名称代替 ?(问号)。因此,更容易记住列的数据。

命名参数查询的简单示例:

insert into employee values (:id,:name,:salary)

NamedParameterJdbcTemplate 类的方法

在此示例中,我们将仅调用 NamedParameterJdbcTemplate 类的 execute 方法。该方法的语法如下:

pubic T execute(String sql,Map map,PreparedStatementCallback psc)

NamedParameterJdbcTemplate 类的示例

我们假设您已在 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 和一个 save 方法。

package cn.javatiku;  
  
import java.sql.PreparedStatement;  
import java.sql.SQLException;  
import org.springframework.dao.DataAccessException;  
import org.springframework.jdbc.core.PreparedStatementCallback;  
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;  
import java.util.*;  
  
public class EmpDao {  
NamedParameterJdbcTemplate template;  
  
public EmpDao(NamedParameterJdbcTemplate template) {  
        this.template = template;  
}  
public  void save (Emp e){  
String query="insert into employee values (:id,:name,:salary)";  
  
Map<String,Object> map=new HashMap<String,Object>();  
map.put("id",e.getId());  
map.put("name",e.getName());  
map.put("salary",e.getSalary());  
  
template.execute(query,map,new PreparedStatementCallback() {  
    @Override  
    public Object doInPreparedStatement(PreparedStatement ps)  
            throws SQLException, DataAccessException {  
        return ps.executeUpdate();  
    }  
});  
}  
}  

applicationContext.xml

DriverManagerDataSource 用于包含有关数据库的信息,例如驱动程序类名、连接 URL、用户名和密码。

在 NamedParameterJdbcTemplate 类中有一个名为 datasource 的属性,类型为 DriverManagerDataSource。因此,我们需要在 NamedParameterJdbcTemplate 类中为 datasource 属性提供 DriverManagerDataSource 对象的引用。

在这里,我们在 EmployeeDao 类中使用 NamedParameterJdbcTemplate 对象,所以我们通过构造函数传递它,但您也可以使用 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="jtemplate"   
 class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">  
<constructor-arg ref="ds"></constructor-arg>  
</bean>  
  
<bean id="edao" class="cn.javatiku.EmpDao">  
<constructor-arg>  
<ref bean="jtemplate"/>  
</constructor-arg>  
</bean>  
  
</beans>  

SimpleTest.java

此类从 applicationContext.xml 文件获取 bean 并调用 save 方法。

package cn.javatiku;  
  
import org.springframework.beans.factory.BeanFactory;  
import org.springframework.beans.factory.xml.XmlBeanFactory;  
import org.springframework.core.io.ClassPathResource;  
import org.springframework.core.io.Resource;  
  
public class SimpleTest {  
  public static void main(String[] args) {  
      
    Resource r=new ClassPathResource("applicationContext.xml");  
    BeanFactory factory=new XmlBeanFactory(r);  
      
    EmpDao dao=(EmpDao)factory.getBean("edao");  
    dao.save(new Emp(23,"sonoo",50000));  
      
  }  
}  

标签: spring, Spring教程, Spring技术, Spring语言学习, Spring学习教程, Spring下载, Spring框架, Spring框架入门, Spring框架教程, Spring框架高级教程, Spring面试题, Spring笔试题, Spring编程思想