Spring Boot连接到MySQL远程数据库

时间:2018-06-13 13:01:02

标签: mysql spring spring-mvc spring-boot remote-server

我正在Spring Boot中开发一个应用程序。我正在使用phpMyAdmin(在我的大学免费)数据库的持久性。我的数据库在远程服务器上。如何为远程数据库连接配置数据源?

请帮助我在配置类中使用注释在属性文件和数据源bean配置中配置它。

例如:登录用户名:admin,密码:root

enter image description here

1 个答案:

答案 0 :(得分:0)

可能就像

在档案application.properties

spring.datasource.url=jdbc:mysql://lamp.ii.us.edu.pl:3306/ii309808
spring.datasource.username=admin
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

3306是MySQL数据库管理系统的默认端口号。如果无法通过端口3306连接,请询问系统管理员。)

参考:https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html#boot-features-connect-to-production-database