spring里使用JDBC(三)NamedParameterJdbcTemplate方式时间:2021-01-07 23:19:101. 命名参数JDBC模式方式,由于NamedParameterJdbcTemplate没有相应的setDataBase方式,所以只能采用构造器的方式 <?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:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <!-- 配置一个数据源 --><bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><property name="driverClassName" value="com.mysql.jdbc.Driver"/><property name="url" value="jdbc:mysql://localhost:3306/xwh" /><property name="username" value="root" /><property name="password" value="root" /></bean><!-- 配置一个NamedParameterJdbcTemplate模板 使用构造函数注入器 --><bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate"><constructor-arg ref="datasource"/></bean><bean id="student" class="com.chapter5.Student"><property name="id" value="2"/><property name="name" value="b"/></bean><bean id="studentDao" class="com.chapter5.StudentDao"><property name="jdbcTemplate" ref="namedParameterJdbcTemplate" /></bean></beans> 2. 相应的Dao类 package com.chapter5;import java.util.HashMap;import java.util.Map;import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;public class StudentDao{NamedParameterJdbcTemplate jdbcTemplate;//注意这里使用变量绑定的方式private static final String student_insert = "insert into student values(:id,:name)";/** * 使用Spring的注入方式 * @param jdbcTemplate */public void setJdbcTemplate(NamedParameterJdbcTemplate jdbcTemplate){this.jdbcTemplate = jdbcTemplate;}/** * 去除客套话,大大简化了代码量。 * @param student */@SuppressWarnings("unchecked")public void saveData(Student student){Map parameters = new HashMap();parameters.put("id", student.getId());parameters.put("name", student.getName());this.jdbcTemplate.update(student_insert, parameters);System.out.println("成功!");}}