gpt4 book ai didi

java - Docker Mysql 8、Docker spring boot - 无法配置数据源 : 'url' attribute is not specified

转载 作者:行者123 更新时间:2023-12-01 17:58:08 24 4
gpt4 key购买 nike

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

->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

相同的应用程序在本地安装的 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

最佳答案

我的猜测是这样的。

# 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

Spring 文档:

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

关于java - Docker Mysql 8、Docker spring boot - 无法配置数据源 : 'url' attribute is not specified,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60681349/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com