使用SpringBoot连接MySQL数据库,快速上手

使用SpringBoot连接MySQL数据库,快速上手@TOC

0 环境配置

  1. IDE Ultimate最新版
  2. Maven 3.6.0
  3. Java JDK 8( 也即1.8)
  4. MySQL server version :8.0.15

学习Springboot包括学习springboot连接数据库,下面将简单介绍如何利用springboot简单建立与MySQL数据的连接并且从中读取数据。

1 建立MySQL数据库

这里使用了Navicat for MySQL来建立数据库,方便快捷。
如下图,在localhost用户里面创建了test数据库,数据库里包含一个user表单,用来记录user信息,有id,email,name,共两条数据信息。
使用SpringBoot连接MySQL数据库,快速上手_第1张图片

2 使用Spring Initializer快速搭建springboot项目

如下图,点击Spring Initializer选好SDK,这里选择java JDK8,即JDK1.8,其他保持默认设置,点击next。
使用SpringBoot连接MySQL数据库,快速上手_第2张图片
接下来设置好group 和artifact,version,三个属性可以唯一确定在maven依赖仓库的项目依赖。JDK跟之前选择保持一致。点击next。
使用SpringBoot连接MySQL数据库,快速上手_第3张图片
接下来选择实现预期功能所需要的依赖,这里选择了web中的web(方便后面观察是否读取到数据库数据),SQL中的MySQL和JDBC。依赖后面也可以手动添加。点击next。
使用SpringBoot连接MySQL数据库,快速上手_第4张图片
使用SpringBoot连接MySQL数据库,快速上手_第5张图片

3 配置pom.xml文件

选好project name 和project location(一般不用改)就行,点击Finish。
项目创建好后的目录结构如下:
使用SpringBoot连接MySQL数据库,快速上手_第6张图片
打开pom.xml可以看到所需的三个依赖已经自动创建好了,如果没有,可以手动添加上去:
使用SpringBoot连接MySQL数据库,快速上手_第7张图片
pom.xml



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
         
    
    cn.mark
    demo-mysql
    0.0.1-SNAPSHOT
    demo-mysql
    Demo project for Spring Boot

    
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-jdbc
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            mysql
            mysql-connector-java
            runtime
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


4 配置application.yml文件

接下来删除application.properties在相同目录下新建application.yml文件,在src\main\jresource目录,配置连接数据库相关信息。数据库test建于root用户下,密码 123456,其中url中的3306为mysql server 的端口。

application.yml

spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/test
    username: root
    password: 123456

5 编写HelloController.java文件

在cn.mark.demomysql package下新建web package,web里面新建HelloController.java文件如图:
使用SpringBoot连接MySQL数据库,快速上手_第8张图片
建立HelloController的目的是为了检测springboot后台是否能成功被访问。
HelloController.java

package cn.mark.demomysql.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloController {
    @RequestMapping(value="/hello",method = RequestMethod.GET)
    @ResponseBody
    public String sayHello(){
        return "Hello, World!";
    }
}

然后点击idea左下角,选择maven,最后在lifecycle里双击install,运行成功后再点击右上角的绿三角,运行成功后,再浏览器输入http://127.0.0.0:8080/hello,若有Hello, World!字样,则说明后台能被访问。
使用SpringBoot连接MySQL数据库,快速上手_第9张图片
maven----install
使用SpringBoot连接MySQL数据库,快速上手_第10张图片
run DemoMysqlApplication 绿色小三角
使用SpringBoot连接MySQL数据库,快速上手_第11张图片
访问成功!
使用SpringBoot连接MySQL数据库,快速上手_第12张图片

6 编写UserController.java文件

UserController.java

package cn.mark.demomysql.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.List;
import java.util.Map;

@Controller
public class UserController {
    @Autowired
    private JdbcTemplate jdbcTemplate;

    @RequestMapping(value = "/getUsers",method = RequestMethod.GET)
    @ResponseBody
    /*
    * List 里的对象是Map对象,而Map对象是
    * 由一个String类型的键和Object类型的值组成
    * */
    public List> getUsers(){
    String sql="select * from user";//SQL查询语句
    List> list=jdbcTemplate.queryForList(sql);
    return list;
    }
}

再次点击install然后点击绿色小三角,若成功运行,在浏览器中输入
http://127.0.0.1:8080/getUsers
即可看到数据表中两条用户信息:
使用SpringBoot连接MySQL数据库,快速上手_第13张图片
参考文章:

  1. https://blog.csdn.net/qq_33129625/article/details/79299535
  2. https://www.bysocket.com/archives/2119

你可能感兴趣的:(学习Springboot)