Spring对JDBC的操作——使用JdbcTemplate操作数据库(二)

使用具名参数的sql操作数据库。

具体配置跟Spring对JDBC的操作——使用JdbcTemplate操作数据库(一)的一样,只是在springxml文件配置中,要增加使用具名参数的相关配置。如下:

<!-- 添加配置NamedParameterJdbcTemplate具名参数 -->
	<bean id="namedParameterJdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
		<constructor-arg ref="dataSource"></constructor-arg>
	</bean>

添加完后,进行相关的测试。下面列出了具名参数的两种使用方式。

ApplicationContext ac = new ClassPathXmlApplicationContext("ApplicationContext.xml");
	NamedParameterJdbcTemplate npjt=ac.getBean(NamedParameterJdbcTemplate.class);
/**
	 * 使用具名参数为sql语句中的参数赋值,使用了map集合。
	 * **/
	@Test
	public void test4(){
		String sql="insert into Employee(name,email,did) values(:name,:email,:did)";
		Map<String, Object> map = new HashMap<>();
		map.put("name", "lala44");
		map.put("email", "lala44@163.com");
		map.put("did", 3);
		npjt.update(sql, map);
		}
	/**
	 * 使用具名参数进行sql参数赋值,利用到了类
	 * **/
	@Test
	public void test5(){
		String sql="insert into Employee(name,email,did) values(:name,:email,:did)";
		Employer e = new Employer();
		e.setName("test");
		e.setEmail("test@sina.com");
		e.setDid(2);
		SqlParameterSource paramSource=new BeanPropertySqlParameterSource(e);
		npjt.update(sql, paramSource);
	}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值