首先在intellij 中新建 project 选择maven 项目
在pom.xml文件中加入依赖文本
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.1.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.1.5.RELEASE</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.13</version>
</dependency>
</dependencies>
在resources文件夹中新建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/beans http://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>
<!--利用spring内置数据源 进行配置数据源-->
<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/mydatabase"></property>
<property name="username" value="root"></property>
<property name="password" value="1234"></property>
</bean>
</beans>
然后在main文件夹中新建class,命名为JdbcTemplateDemo
package com.itheima;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;
public class JdbcTemplateDemo {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");
JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate",JdbcTemplate.class);
jdbcTemplate.update("insert into class (age,name,id) values (?,?,?)",20,"lu",105055);
}
}
这里由于我刚开始新建的类名字叫 JdbcTemplate,所以在写完
JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate",JdbcTemplate.class);
这段代码以后, 对象jdbcTemplate一直没有crud的方法,query,execute,update什么的都显示不出来,一开始以为是pom文件出问题,于是不断改,版本从旧到新更换了好几次,上网查阅资料,又新增了很多pom依赖文本,但是还是失败。
睡完午觉起来脑子清醒了一点,从头到尾全部重新自己码了一遍,发现问题出在新建的类名上,换成JdbcTemplateDemo 以后再重新写
JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate",JdbcTemplate.class);
这段代码,接下来输入 jdbcTemplate自动就出现crud方法,圆满解决问题。
接着开始run main函数,又出现错误提示,
`Client does not support authentication protocol requested by server`
检查完bean文件确定都输入正确了,上网查阅了一下,有人说升级mysql客户端,就在pom文件中把所有的依赖文件更新到最新的版本,果然成功了。
第二次run,出现新的错误提示
出现错误,时区的错误
The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone
打开mcd进入MySQL,登录root账号后,输入下面的代码
set global time_zone = ‘+8:00‘; ##修改mysql全局时区为北京时间,即我们所在的东8区
set time_zone = ‘+8:00‘; ##修改当前会话时区
flush privileges; #立即生效
显示
Query Ok, 0 rows affected
时区错误解决~
再run一次main函数,成功执行crud 操作。