日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

JdbcTemplate类中的execute方法

發(fā)布時(shí)間:2025/3/19 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JdbcTemplate类中的execute方法 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

使用execute方法建一張用戶表,execute()方法里可以執(zhí)行SQL語句.
JdbcTemplateTest.java:

package com.liu.jdbc;import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.jdbc.core.JdbcTemplate;public class JdbcTemplateTest {public static void main(String[] args) {ApplicationContext applicationContext = new ClassPathXmlApplicationContext("ApplicationContext.xml");JdbcTemplate jdbcTemplate = (JdbcTemplate) applicationContext.getBean("jdbcTemplate");jdbcTemplate.execute("create table user(id int primary key auto_increment,username varchar(20))");System.out.println("user表創(chuàng)建成功");}}

ApplicationContext.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"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-4.3.xsd"><!-- 配置數(shù)據(jù)源 --><bean id = "dataSource" class = "org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 數(shù)據(jù)庫(kù)驅(qū)動(dòng) --><property name="driverClassName" value = "com.mysql.jdbc.Driver"></property><!-- 數(shù)據(jù)庫(kù)url --><property name="url" value = "jdbc:mysql://localhost:3306/test"></property><!-- 數(shù)據(jù)庫(kù)用戶名 --><property name="username" value = "root"></property><!-- 數(shù)據(jù)庫(kù)密碼 --><property name="password" value = "root"></property></bean><!-- 配置jdbc模板類 --><bean id = "jdbcTemplate" class = "org.springframework.jdbc.core.JdbcTemplate"><!-- 默認(rèn)必須使用數(shù)據(jù)源 --><property name="dataSource" ref = "dataSource"></property></bean></beans>

需要的包:

總結(jié)

以上是生活随笔為你收集整理的JdbcTemplate类中的execute方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。