Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

spring jpa application.properties useSSL

Tags:

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 file is:

# ===============================
# = 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

I have tried spring.datasource.useSSl=false and that does not work. I have also tried spring.datasource.url = jdbc:mysql://localhost:3306/test&useSSL=false

like image 628
SJC Avatar asked Feb 23 '16 11:02

SJC


2 Answers

I fixed my issue with the below:

jdbc:mysql://localhost:3306/test?verifyServerCertificate=false&useSSL=false&requireSSL=false
like image 51
Sanjay Mistry Avatar answered Oct 13 '22 00:10

Sanjay Mistry


Shouldn't you be using '?' instead of '&'

This is yours

spring.datasource.url =jdbc:mysql://localhost:3306/test&useSSL=false

What I'm saying is

spring.datasource.url = jdbc:mysql://localhost:3306/test?useSSL=false
like image 42
Subhajit Roy Avatar answered Oct 13 '22 01:10

Subhajit Roy