Reputation: 107
I tried to access my simple API call through POSTMAN. It didn't work whereas it is working in browser.
Tried after making changes in Database connection URL as below.
jdbc:mysql://localhost:3306/BLOG_ERA?useSSL=false
Even it didn't work.
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
Upvotes: 1
Views: 6558
Reputation: 107
This is just because of an incorrect URL given in POSTMAN. I am able to get the response in POSTMAN. It is nowhere related to the SSL warning.
Upvotes: 0
Reputation: 7917
This is just a warning and not an error.
If it is working in the browser and not in Postman, the problem is most likely in the URL and not in the database connection. Make sure you are using the exact same URL in Postman. Most people make the mistake of using http
in the URL in Postman instead of https
.
Upvotes: 0