是否可以使用eclipse中的spring boot应用程序从mamp服务器(localhost)连接phpmyadmin数据库并显示数据?或者它是如何工作的,因为我不知道如何实现它?感谢。
if...elseif...else
这就是我用于application.properties
的内容答案 0 :(得分:2)
以下设置似乎对我有用。
spring.datasource.url=jdbc:mysql://localhost:8889/test
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
答案 1 :(得分:0)
我正在使用WAMP服务器3.0.6
MySql的默认端口是3306,因此以下内容对我有用
spring.datasource.url= jdbc:mysql://localhost:3306/DBname
spring.datasource.username=dbusername
spring.datasource.password=dbpassword
spring.jpa.hibernate.ddl-auto=create-drop
答案 2 :(得分:0)
如果有人使用MAMP中的MySQL。以下配置对我有用。
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://localhost:8889/join_test?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=root