JdbcTemplate类中的execute方法
生活随笔
收集整理的這篇文章主要介紹了
JdbcTemplate类中的execute方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用execute方法建一張用戶表,execute()方法里可以執行SQL語句.
JdbcTemplateTest.java:
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"><!-- 配置數據源 --><bean id = "dataSource" class = "org.springframework.jdbc.datasource.DriverManagerDataSource"><!-- 數據庫驅動 --><property name="driverClassName" value = "com.mysql.jdbc.Driver"></property><!-- 數據庫url --><property name="url" value = "jdbc:mysql://localhost:3306/test"></property><!-- 數據庫用戶名 --><property name="username" value = "root"></property><!-- 數據庫密碼 --><property name="password" value = "root"></property></bean><!-- 配置jdbc模板類 --><bean id = "jdbcTemplate" class = "org.springframework.jdbc.core.JdbcTemplate"><!-- 默認必須使用數據源 --><property name="dataSource" ref = "dataSource"></property></bean></beans>需要的包:
總結
以上是生活随笔為你收集整理的JdbcTemplate类中的execute方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用注解方式进行aop编程(代码)
- 下一篇: JdbcTmplate中的update方