国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

詳解在spring中使用JdbcTemplate操作數(shù)據(jù)庫(kù)的幾種方式

瀏覽:11日期:2023-08-25 15:03:38

使用JdbcTemplate的步驟

1、設(shè)置spring-jdbc和spring-tx的坐標(biāo)(也就是導(dǎo)入依賴)

<dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.2.7.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>5.2.7.RELEASE</version> </dependency>

2、創(chuàng)建數(shù)據(jù)表和實(shí)體類

創(chuàng)建數(shù)據(jù)表的過程省略 創(chuàng)建實(shí)體類Account

package com.jdbcTemplate.bean;public class Account { private String name; private Double money; public String getName() { return name; } public void setName(String name) { this.name = name; } public Double getMoney() { return money; } public void setMoney(Double money) { this.money = money; } @Override public String toString() { return 'Account{' +'name=’' + name + ’’’ +', money=' + money +’}’; }}

3、創(chuàng)建數(shù)據(jù)源、JdbcTemplate對(duì)象

4、執(zhí)行數(shù)據(jù)庫(kù)操作

實(shí)現(xiàn)3、4步的方法提供以下三種

方法一:代碼中直接配置數(shù)據(jù)源和數(shù)據(jù)對(duì)象

創(chuàng)建JdbcTemplate對(duì)象+執(zhí)行jdbc語(yǔ)句

//創(chuàng)建數(shù)據(jù)源對(duì)象 DriverManagerDataSource ds = new DriverManagerDataSource(); ds.setDriverClassName('com.mysql.jdbc.Driver'); ds.setUrl('jdbc:mysql://localhost:3306/think'); ds.setUsername('root'); ds.setPassword(''); //創(chuàng)建jdbcTemplate對(duì)象 JdbcTemplate jt = new JdbcTemplate(); //執(zhí)行操作(插入操作) jt.setDataSource(ds); jt.execute('insert into account(name,money)value(’EVA’,50000)');

方法二:在resources目錄下配置xx.xml文件,對(duì)數(shù)據(jù)源、JdbcTemplate進(jìn)行注入

配置xml文件

<?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.xsd'><!-- //配置數(shù)據(jù)源--> <bean class='org.springframework.jdbc.datasource.DriverManagerDataSource'> <property name='driverClassName' value='com.mysql.jdbc.Driver'/> <property name='url' value='jdbc:mysql://localhost:3306/think'/> <property name='username' value='root'/> <property name='password' value=''/> </bean><!-- //配置jdbcTemplate--> <bean class='org.springframework.jdbc.core.JdbcTemplate'> <property name='dataSource' ref='dataSource'/> </bean>

使用配置操作數(shù)據(jù)庫(kù)

編寫test類測(cè)試

//二、使用配置操作數(shù)據(jù)庫(kù) //1、獲取容器 ApplicationContext ac = new ClassPathXmlApplicationContext('beans5.xml'); //2、獲取對(duì)象 JdbcTemplate jt = ac.getBean('jdbcTemplate',JdbcTemplate.class); //、執(zhí)行操作// jt.execute('insert into account(name,money)value (’Alice’,2000)'); //保存 //jt.update('insert into account(name,money)value (?,?)','Eden',100); //更新 // jt.update('update account set money=?,name=? where name=?',1000,'Kiroto','Eden'); //刪除 //jt.update('delete from account where name =? and money =?','Kiroto',1000); //查找 List<Account> list = jt.query('select * from account where name =?',new BeanPropertyRowMapper<Account>(Account.class),'Eden'); System.out.println(list.isEmpty()?'沒有查找結(jié)果':list.get(0));

方法三:使用接口實(shí)現(xiàn)

創(chuàng)建template接口和templateDAO接口實(shí)現(xiàn)類

接口

package com.jdbcTemplate.test;import com.jdbcTemplate.bean.Account;public interface Template { Account find(String name); int update(Account account); int delete(Account account); int add(Account account);}

接口實(shí)現(xiàn)類

package com.jdbcTemplate.test;import com.jdbcTemplate.bean.Account;import org.springframework.jdbc.core.BeanPropertyRowMapper;import org.springframework.jdbc.core.JdbcTemplate;import java.util.List;public class TemplateDAO implements Template { private JdbcTemplate jdbcTemplate; public void setJdbcTemplate(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } public Account find(String name) {//查找 List<Account> list = jdbcTemplate.query('select * from account where name=?',new BeanPropertyRowMapper<Account>(Account.class),name); return list.isEmpty()?null:list.get(0); } public int update(Account account) {//更新 return jdbcTemplate.update('update account set money=? where name=?',account.getMoney(),account.getName()); } public int delete(Account account) {//刪除 return jdbcTemplate.update('delete from account where name =?',account.getName()); } public int add(Account account) {//添加 return jdbcTemplate.update('insert into account(name ,money)value (?,?)',account.getName(),account.getMoney()); }}

在測(cè)試之前,因?yàn)槎嗔艘粋€(gè)接口實(shí)現(xiàn)類,除了數(shù)據(jù)源和jdbcTemplate之外,應(yīng)當(dāng)在xml配置文件中多配置一個(gè)TemplateDAO

<!-- 配置賬戶的持久層--> <bean class='com.jdbcTemplate.test.TemplateDAO'> <property name='jdbcTemplate' ref='jdbcTemplate'/> </bean>

編寫測(cè)試類進(jìn)行測(cè)試

import com.jdbcTemplate.bean.Account;import com.jdbcTemplate.test.Template;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class mytest { public static void main(String[] args) { ApplicationContext ac = new ClassPathXmlApplicationContext('beans6.xml'); Template tp = ac.getBean('templateDAO',Template.class);//注意對(duì)比方法二的不同 Account account = tp.find('Lily'); System.out.println(account.toString()); }}

到此這篇關(guān)于詳解在spring中使用JdbcTemplate操作數(shù)據(jù)庫(kù)的幾種方式的文章就介紹到這了,更多相關(guān)spring JdbcTemplate操作數(shù)據(jù)庫(kù)內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Spring
相關(guān)文章:
主站蜘蛛池模板: 日韩免费精品一级毛片 | 亚洲日本欧美在线 | 国产男女爽爽爽免费视频 | 国内精品久久影院 | 精品 日韩 国产 欧美在线观看 | 国产日韩精品欧美一区喷 | 亚洲视频中文字幕在线 | 香港三级日本三级人妇三级四 | 久草在线| 69成人免费视频 | 99视频精品全国在线观看 | 国产精品日产三级在线观看 | 久久久精品影院 | 欧美大片无尺码在线观看 | 精品国产欧美另类一区 | 波多野结衣在线免费观看视频 | 国产日韩欧美精品 | 国产三级日本三级在线播放 | 狠狠色丁香九九婷婷综合五月 | 亚洲涩涩精品专区 | 免费的成人a视频在线观看 免费的毛片 | 免费的a级毛片 | 欧日韩美香蕉在线观看 | 亚洲国产精 | 久久一级视频 | 国产天堂 | 男人天堂中文字幕 | 久久青草免费免费91线频观看 | 久草视频免费播放 | 成年人视频网站免费 | 亚洲天码中文字幕第一页 | 最新在线精品国自拍视频 | 欧美成人性色生活片天天看 | 萌白酱喷水福利视频在线 | 最新国产午夜精品视频成人 | 国产日本欧美在线观看 | 亚洲一区二区天海翼 | 欧美 日韩 国产 成人 在线观看 | 亚洲欧洲国产成人综合一本 | 亚洲女精品一区二区三区 | 欧美精品在线一区二区三区 |