博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring3.2.9 + JdbcTemplate 学习
阅读量:6733 次
发布时间:2019-06-25

本文共 1573 字,大约阅读时间需要 5 分钟。

applicationContext.xml

1 
2
17 18
19 20
21
22
23
24
25
26 27
28
29
30 31
32
33
34 35

TestDaoImpl.java

package cn.byref.spring.demo;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.core.support.JdbcDaoSupport;public class TestDaoImpl extends JdbcDaoSupport implements TestDao {    @Override    public void addAge(String userName, int age) {        JdbcTemplate tpl = this.getJdbcTemplate();        String sql = "update test set age = ? where username = ?";        int cnt = tpl.update(sql, new Object[] { age, userName});        System.out.println("effected = " + cnt);    }}

TestClass.java

package cn.byref.spring.demo;import javax.annotation.Resource;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.test.context.ContextConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import com.mchange.v2.c3p0.ComboPooledDataSource;@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class TestClass {        @Resource    private ComboPooledDataSource dataSource;        @Resource    private TestDao testDao;        @Resource     TestService testService;        @Test    public void test(){//        testDao.addAge("侠客", 1001);        testService.addAge("侠客", 110);    }}

 

转载于:https://www.cnblogs.com/byxxw/p/4904903.html

你可能感兴趣的文章
内存回收
查看>>
error LNK1104:无法打开文件"lua51.lib"
查看>>
Git 详细的操作指南笔记
查看>>
尼采语录
查看>>
【linux】crontab失效
查看>>
利用Sharding-Jdbc实现分表
查看>>
php post接口,登录功能
查看>>
xml学习_上篇
查看>>
Java下利用Jackson进行JSON解析和序列化
查看>>
HTML5标准学习 - 文档结构
查看>>
WebClient和Directory的使用 都是很强大的
查看>>
Creating Self-Signed SSL Certificates
查看>>
②泡茶看<数据结构>,喜欢看源码-栈ADT
查看>>
[matlab] 矩阵操作
查看>>
win8上部署.net4.0程序到iis
查看>>
eclipse中 linked resource的使用
查看>>
Android之GridView控制显示多少行以及遇到的怪事
查看>>
学习资料整理
查看>>
springcloud(三):服务提供与调用
查看>>
使用Installutil安装系统服务方法
查看>>