springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql

文章目录

  • 一、快速创建项目
    • 1. 创建项目
    • 2. 项目细节
    • 3. 勾选项目依赖
    • 4. 项目结构
  • 二、数据库结构
  • 三、pom.xml文件依赖
  • 四、application.yml配置文件
  • 五、controller 测试
    • 1. 测试类
    • 2. 测试请求结果

一、快速创建项目

1. 创建项目

springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql_第1张图片

2. 项目细节

3. 勾选项目依赖

  • Web模块中选择Spring web依赖
  • SQL模块中选以下两个依赖
    1. JDBC API 会导入 spring-boot-starter-jdbc 依赖
    2. MySql Driver 会导入mysql-connector-java 依赖
    3. 这个不选)Spring Data JDBC 会导入 spring-boot-starter-data-jdbc 依赖

4. 项目结构

(controller包 是下面要写的测试类)
springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql_第2张图片

二、数据库结构

三、pom.xml文件依赖

对应创建项目时勾选的项目依赖包:

  1. spring-boot-starter-jdbc:SQL模块JDBC API
  2. mysql-connector-java:SQL模块 MySql Driver
  3. spring-boot-starter-web:Web模块的 Spring Web
  4. spring-boot-starter-test(默认带的依赖)

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0modelVersion>
	<parent>
		<groupId>org.springframework.bootgroupId>
		<artifactId>spring-boot-starter-parentartifactId>
		<version>2.7.2version>
		<relativePath/> 
	parent>
	<groupId>com.feng.jdbcgroupId>
	<artifactId>springboot_jdbcartifactId>
	<version>0.0.1-SNAPSHOTversion>
	<name>springboot_jdbcname>
	<description>springboot_jdbcdescription>
	<properties>
		<java.version>1.8java.version>
	properties>
	<dependencies>
		<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-starter-jdbcartifactId>
		dependency>
        <dependency>
            <groupId>mysqlgroupId>
            <artifactId>mysql-connector-javaartifactId>
            <scope>runtimescope>
        dependency>

		<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-starter-webartifactId>
		dependency>

		<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-starter-testartifactId>
			<scope>testscope>
		dependency>
	dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.bootgroupId>
				<artifactId>spring-boot-maven-pluginartifactId>
			plugin>
		plugins>
	build>

project>

四、application.yml配置文件

项目中如果加入了有关jdbc的依赖包,就必须要配置数据源信息,否则会报错,如下


加如下配置即可

spring:
  datasource:
    username: root
    password: 123456
    #?serverTimezone=UTC解决时区的报错
    url: jdbc:mysql://IP:3306/feng?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
    driver-class-name: com.mysql.cj.jdbc.Driver

则启动OK

五、controller 测试

1. 测试类

package com.feng.springboot_jdbc.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

    // //我们以后会经常看见xxxxTemplate,这个是spring boot已经配置好的模板@bean,拿来即用
    @Autowired
    private JdbcTemplate jdbcTemplate;

    @GetMapping("/test")
    public String getStr() {
        return "hello world";
    }

    @GetMapping("/add")
    public String getUser() {
        String sql = "INSERT INTO user_data(user_id , user_name) VALUES (2, 'fanli')";
        int update = jdbcTemplate.update(sql);
        return "ok:" + update;
    }
}

2. 测试请求结果

  1. 测试接口:http://localhost:8080/test
    springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql_第3张图片
  2. 新增请求:http://localhost:8080/add
    springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql_第4张图片
    springboot学习四:springboot链接mysql数据库,使用JdbcTemplate 操作mysql_第5张图片

你可能感兴趣的:(spring,springboot,springcloud,spring,boot,数据库,mysql)