简体   繁体   中英

How to connect between Spring Boot and MySQL on Docker with Docker-compose?

My Application Properties

spring.profiles.include=docker

spring.datasource.url=jdbc:mysql://dbwebrestful:3306/webrestful
spring.datasource.username=root
spring.datasource.password=webrestful

and my docker-compose.yml

on this link

but still error like this

在此处输入图片说明

what should I do to fix this issue ?

如果你的 docekr 和 mysql 在同一个实例上,那么试试这个

spring.datasource.url=jdbc:mysql://host.docker.internal:3306/yourdbname

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM