當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JdbcTemplate在Spring的ioc中使用
生活随笔
收集整理的這篇文章主要介紹了
JdbcTemplate在Spring的ioc中使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
bean.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.xsd"><!--配置JdbcTemplate--><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><property name="dataSource" ref="dataSource"></property></bean><!-- 配置數據源--><bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><property name="driverClassName" value="com.mysql.jdbc.Driver"></property><property name="url" value="jdbc:mysql://localhost:3306/eesy"></property><property name="username" value="root"></property><property name="password" value="root"></property></bean> </beans>JdbcTemplateDemo2.java
package com.itheima.jdbctemplate;import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.jdbc.core.JdbcTemplate;/*** JdbcTemplate的最基本用法*/ public class JdbcTemplateDemo2 {public static void main(String[] args) {//1.獲取容器ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");//2.獲取對象JdbcTemplate jt = ac.getBean("jdbcTemplate",JdbcTemplate.class);//3.執行操作jt.execute("insert into account(name,money) values('ddd',2222)");} }?
總結
以上是生活随笔為你收集整理的JdbcTemplate在Spring的ioc中使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: spring中的JdbcTemplate
- 下一篇: JdbcTemplate的CRUD操作