2 回答
TA贡献1829条经验 获得超6个赞
我认为这里的主机名有问题。因此,请检查一次主机名,例如 localhost(或)您正确的数据库托管地名。
因为它显示像unknownHostException这样的异常。
TA贡献1816条经验 获得超6个赞
spring.datasource.url=jdbc:mysql://localhost:3306/db_example
spring.datasource.username = root
spring.datasource.password = root
spring.jpa.properties.hibernate.dialect =org.hibernate.dialect.MySQL5Dialect
hibernate.dialect=org.hibernate.dialectMySQL5Dialect
hibernate.show_sql=true
hibernate.hbm2ddl.auto=create
hibernate.ddl-auto=validate
hibernate.connection.url=jdbc:mysql://localhost:3306/axa_india?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
hibernate.connection.username=root
hibernate.connection.password=root
添加回答
举报