Springboot a warning when connecting to MySQL:
English:
Mon JuneGeneva xx: -: -Cst2018warn: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 is established by default if explicit Opti On isn'TSet.
For compliance with existing applications notusingSSL the Verifyservercertificate property is SetTo'false'.
Need either to explicitly disable SSL by setting usessl=false, orSetUsessl=trueand provide Truststore forServer Certificate Verification
Chinese:
Note: It is not recommended to establish an SSL connection without server authentication.
5.5. * +,5.6. + + and 5. 7.6+ requirements, if you do not set an explicit option, you must establish a default SSL connection.
You need to explicitly disable SSL by setting Usessl=false, or set up usessl=true and provide trust storage for server certificate validation
Workaround:
Modify the database connection string as:
Jdbc:mysql://127.0.0.1:3306/myshop?useunicode=true&characterencoding=utf-8&usessl=false
Springboot------connection to MySQL warning: establishing SSL connection without server ' s identity verification is not recommended