mysql - spring jpa application.properties useSSL

我正在尝试关闭 ssl,连接到我的本地 mysql 数据库。 但是我在 spring application.properties 文件中找不到可以执行此操作的实际属性。

我当前的文件是:

# ===============================
# = DATA SOURCE
# ===============================

# Set here configurations for the database connection

# Connection url for the database "test"
spring.datasource.url = jdbc:mysql://localhost:3306/test
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

# Username and password
spring.datasource.username = root
spring.datasource.password = blah

# Keep the connection alive if idle for a long time (needed in production)
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1

# ===============================
# = JPA / HIBERNATE
# ===============================

# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
# stripped before adding them to the entity manager).

# Show or not log for each sql query
spring.jpa.show-sql = true

# Hibernate ddl auto (create, create-drop, update): with "update" the database
# schema will be automatically updated accordingly to java entities found in
# the project
spring.jpa.hibernate.ddl-auto = update

# Naming strategy
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy

# Allows Hibernate to generate SQL optimized for a particular DBMS
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect

我已经尝试过 spring.datasource.useSSl=false 但这不起作用。我也试过 spring.datasource.url = jdbc:mysql://localhost:3306/test&useSSL=false

最佳答案

我用以下方法解决了我的问题:

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

https://stackoverflow.com/questions/35576994/

相关文章:

java - Spring 的 JdbcTemplate 和事务

json - Spring REST 服务 : retrieving JSON from Reque

spring - 不使用 Maven 下载 Spring Jars

java - RestTemplate 不转义 url

java - Spring MVC 示例 Web 应用程序

java - 是否可以在构造函数上使用@Resource?

spring - 如何在 Thymeleaf 和 Spring Boot 中显示消息?

java - Spring Redis - 从 application.properties 文件中

performance - ORM 解决方案(JPA;Hibernate)与 JDBC

java - Spring Boot 禁用/错误映射