是否可以使用 codespaces + 本地 mysql 服务器?

是否可以使用 codespaces + 本地 mysql 服务器?

我在 Spring Boot 应用程序旁边使用本地 mysql 服务器,在应用程序属性文件中配置 MySQL 服务器很容易:

spring.datasource.username=blablabla
spring.datasource.password=blablabla
spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/db_example
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
  • 现在,我想将本地 Mysql 服务器与在代码空间上运行的 Spring boot 应用程序一起使用。
  • 这可能吗?如果可以,怎么做?

相关内容