spring jpa application.properties useSSL

前端 未结 3 668
逝去的感伤
逝去的感伤 2020-12-15 05:30

I am trying to turn off ssl, to my local mysql database. But I cannot find the actual property in a spring application.properties file that would do this.

my current

3条回答
  •  不思量自难忘°
    2020-12-15 06:10

    I fixed my issue with the below:

    jdbc:mysql://localhost:3306/test?verifyServerCertificate=false&useSSL=false&requireSSL=false
    

提交回复
热议问题