在中国原生中文中的解释是:配置Spring Boot + Spring JDBC以连接到XAMPP的MySQL

首先

我想使用Spring Boot + Spring JDBC在本地环境下进行MySQL的连接验证,所以尝试使用XAMPP的MySQL(MariaDB)进行操作。

开发环境

    • OS: Windows 10

 

    • Java: 11

 

    • Spring Boot: 2.3.5

 

    • ビルドツール : Gradle

 

    • IDE: Eclipse 2020-12

 

    MySQL(MariaDB): 10.4.14

配置文件

    build.gradle

※省略了单元测试库。

plugins {
    id 'org.springframework.boot' version '2.3.5.RELEASE'
    id 'io.spring.dependency-management' version '1.0.10.RELEASE'
    id 'java'
    id 'eclipse'
    id 'idea'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11

compileJava.options.encoding = "UTF-8"


repositories {
    mavenCentral()
}

dependencies {

    implementation 'org.springframework.boot:spring-boot-starter-jdbc'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    developmentOnly 'org.springframework.boot:spring-boot-devtools'
    runtimeOnly 'mysql:mysql-connector-java'

}

    application.yml

※application.yml是将application.properties文件转换为yml格式的文件。
※文件位置:项目名\src\main\resources\application.yml

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/[データベース名]
    driverClassName: com.mysql.jdbc.Driver
    username: [ユーザー名]
    password: [パスワード]

使之更加顺畅的技巧

    SpringのTomcatとMySQLのApache、両方を起動させておくこと

经常会忘记启动MySQL…

请看以下范文

Spring公式MySql教程

广告
将在 10 秒后关闭
bannerAds