一、創建spring項目
?? ?項目名稱:spring101302
二、在項目上添加jar包
?? ?1.在項目中創建lib目錄
?? ??? ?/lib
?? ?2.在lib目錄下添加spring支持
?? ??? ?commons-logging.jar
?? ??? ?junit-4.10.jar
?? ??? ?log4j.jar
?? ??? ?mysql-connector-java-5.1.18-bin.jar
?? ??? ?spring-beans-3.2.0.RELEASE.jar
?? ??? ?spring-context-3.2.0.RELEASE.jar
?? ??? ?spring-core-3.2.0.RELEASE.jar
?? ??? ?spring-expression-3.2.0.RELEASE.jar
?? ??? ?spring-jdbc-3.2.0.RELEASE.jar
?? ??? ?spring-tx-3.2.0.RELEASE.jar
三、在項目中添加配置文件
?? ?1.在項目中創建conf目錄
?? ?2.在conf目錄下添加spring核心配置文件
?? ??? ?配置文件名稱: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"
?? ??? ??????? xmlns:context="http://www.springframework.org/schema/context"
?? ??? ??????? xsi:schemaLocation="
?? ??? ?http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
?? ??? ?http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
?? ??? ?
?? ??? ?<!-- 1.配置數據庫連接池 -->
?? ??? ?<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
?? ??? ??? ?<property name="url" value="jdbc:mysql://localhost:3306/spring"></property>
?? ??? ??? ?<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
?? ??? ??? ?<property name="username" value="root"></property>
?? ??? ??? ?<property name="password" value="root"></property>
?? ??? ?</bean>
?? ??? ?
?? ??? ?<!-- 2.配置JdbcTemplate -->
?? ??? ?<bean id="jdbctemplate" class="org.springframework.jdbc.core.JdbcTemplate">
?? ??? ??? ?<!-- 給屬性注入值 -->
?? ??? ??? ?<property name="dataSource" ref="dataSource"></property>
?? ??? ?</bean>
</beans>
四、測試
?? ?1.在項目上創建test目錄
?? ??? ?/test
?? ?2.在test目錄下創建測試包
?? ??? ?包名:cn.jbit.spring101301.test
?? ?3.在測試包下創建測試類
?? ??? ?測試類名:JdbcTemplateDemo.java
?? ??? ?測試類的內容:
?? ??? ?public class JdbcTemplateDemo {
?? ??? ??? ?/**
?? ??? ??? ? * 使用spring jdbctemplate添加數據
?? ??? ??? ? */
?? ??? ??? ?@Test
?? ??? ??? ?public void testJdbcTemplate(){
?? ??? ??? ??? ?ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
?? ??? ??? ??? ?JdbcTemplate jdbcTemplate = (JdbcTemplate) context.getBean("jdbctemplate");
?? ??? ??? ??? ?String sql = "INSERT INTO temp(tid,tname) VALUES(1,'zhangsan')";
?? ??? ??? ??? ?jdbcTemplate.execute(sql);
?? ??? ??? ?}
?? ?項目名稱:spring101302
二、在項目上添加jar包
?? ?1.在項目中創建lib目錄
?? ??? ?/lib
?? ?2.在lib目錄下添加spring支持
?? ??? ?commons-logging.jar
?? ??? ?junit-4.10.jar
?? ??? ?log4j.jar
?? ??? ?mysql-connector-java-5.1.18-bin.jar
?? ??? ?spring-beans-3.2.0.RELEASE.jar
?? ??? ?spring-context-3.2.0.RELEASE.jar
?? ??? ?spring-core-3.2.0.RELEASE.jar
?? ??? ?spring-expression-3.2.0.RELEASE.jar
?? ??? ?spring-jdbc-3.2.0.RELEASE.jar
?? ??? ?spring-tx-3.2.0.RELEASE.jar
三、在項目中添加配置文件
?? ?1.在項目中創建conf目錄
?? ?2.在conf目錄下添加spring核心配置文件
?? ??? ?配置文件名稱: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"
?? ??? ??????? xmlns:context="http://www.springframework.org/schema/context"
?? ??? ??????? xsi:schemaLocation="
?? ??? ?http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
?? ??? ?http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
?? ??? ?
?? ??? ?<!-- 1.配置數據庫連接池 -->
?? ??? ?<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
?? ??? ??? ?<property name="url" value="jdbc:mysql://localhost:3306/spring"></property>
?? ??? ??? ?<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
?? ??? ??? ?<property name="username" value="root"></property>
?? ??? ??? ?<property name="password" value="root"></property>
?? ??? ?</bean>
?? ??? ?
?? ??? ?<!-- 2.配置JdbcTemplate -->
?? ??? ?<bean id="jdbctemplate" class="org.springframework.jdbc.core.JdbcTemplate">
?? ??? ??? ?<!-- 給屬性注入值 -->
?? ??? ??? ?<property name="dataSource" ref="dataSource"></property>
?? ??? ?</bean>
</beans>
四、測試
?? ?1.在項目上創建test目錄
?? ??? ?/test
?? ?2.在test目錄下創建測試包
?? ??? ?包名:cn.jbit.spring101301.test
?? ?3.在測試包下創建測試類
?? ??? ?測試類名:JdbcTemplateDemo.java
?? ??? ?測試類的內容:
?? ??? ?public class JdbcTemplateDemo {
?? ??? ??? ?/**
?? ??? ??? ? * 使用spring jdbctemplate添加數據
?? ??? ??? ? */
?? ??? ??? ?@Test
?? ??? ??? ?public void testJdbcTemplate(){
?? ??? ??? ??? ?ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
?? ??? ??? ??? ?JdbcTemplate jdbcTemplate = (JdbcTemplate) context.getBean("jdbctemplate");
?? ??? ??? ??? ?String sql = "INSERT INTO temp(tid,tname) VALUES(1,'zhangsan')";
?? ??? ??? ??? ?jdbcTemplate.execute(sql);
?? ??? ??? ?}
?? ??? ?}
本文轉自 ?素顏豬 ?51CTO博客,原文鏈接:http://blog.51cto.com/suyanzhu/1563218