2

My application.properties is :

spring.datasource.url=jdbc:mysql://localhost:3306/bdd_disc?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=MP18711922
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELEC 1

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

# Hibernate ddl auto (create, create-drop, update)
spring.jpa.hibernate.ddl-auto = update

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

spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect

When I make a maven Build and try to run the main SpringBoot class I have the following message :

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
1

1 Answer 1

1

OK, I found the problem by adding :

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

in application.properties.

Sorry...

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.