【问题标题】:Docker Mysql 8, Docker spring boot - Failed to configure a DataSource: 'url' attribute is not specifiedDocker Mysql 8,Docker spring boot - 无法配置数据源:未指定“url”属性
【发布时间】:2020-03-14 09:27:38
【问题描述】:

我一直在研究所有可能的排列,但没有成功。

->application.properties

## DATASOURCE
#local connection
#spring.datasource.url=jdbc:mysql://localhost:3306/Apple?useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true&autoReconnect=true
# docker network connection
spring.datasource.url=jdbc:mysql://mysqldb_container:3306/Apple?useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true&autoReconnect=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

->build.gradle

plugins {
    id 'org.springframework.boot' version '2.2.4.RELEASE';
    id 'io.spring.dependency-management' version '1.0.9.RELEASE'
    id 'java'
}; group 'org.example'; version '1.0-SNAPSHOT'; sourceCompatibility = 1.8; repositories { mavenCentral() }; dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation('mysql:mysql-connector-java'); testCompile group: 'junit', name: 'junit', version: '4.12'
}

->Dockerfile

From openjdk:8
copy build/libs/Java_Mysql_Docker-1.0-SNAPSHOT.jar java_mysql_docker_jar.jar
CMD ["java","-jar","java_mysql_docker_jar.jar"]

->docker 命令

docker network create java_mysql_docker_network
docker container run --name mysqldb_container --network java_mysql_docker_network -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=Apple -p 3306:3306 -d mysql:8
gradle clean build
docker build -t java_mysql_docker_image .
docker container run --name java_mysql_docker_image_container --network java_mysql_docker_network -p 8080:8080 java_mysql_docker_image

->异常说明:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class

相同的应用程序在以下 URL 的本地安装的 MySQL 8 上运行良好

spring.datasource.url=jdbc:mysql://localhost:3306/Apple?useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true&autoReconnect=true

但 Docker MySQL 8 失败

spring.datasource.url=jdbc:mysql://mysqldb_container:3306/Apple?useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true&autoReconnect=true

【问题讨论】:

标签: java mysql docker dockerfile


【解决方案1】:

我的猜测是。

# This driver is not in the classpath.
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver


# Spring auto-detects the driver based on the JDBC URL. This one. 
# Explicitly setting the driver that is in the class path.
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

您看到的错误来自这个类,来自 spring-boot 项目:

https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceBeanCreationFailureAnalyzer.java

春季文档:

https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html

【讨论】:

    【解决方案2】:

    显然评论驱动程序适用于本地安装和 docker MySQL 8。

    #spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    

    但仍想解释为什么会这样。

    【讨论】:

      猜你喜欢
      • 2019-10-20
      • 2023-02-07
      • 2019-08-24
      • 2021-03-18
      • 2023-02-21
      • 2022-07-21
      • 2020-04-26
      • 2021-05-14
      • 2019-08-07
      相关资源
      最近更新 更多