Skip to content

smensulaiman/autohauschile-spring-boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutohausChile Database Configuration

Make sure to configure your database settings in the application.properties file. Here's an example configuration for MySQL:

# Database Configuration

# Specify the JDBC driver class
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

# Define the database connection URL
spring.datasource.url=jdbc:mysql:https://localhost:3306/autohauschile

# Set the database username
spring.datasource.username=root

# Provide the database password
spring.datasource.password=

# Enable SQL logging for debugging purposes
spring.jpa.show-sql=true

# Configure Hibernate to automatically update the database schema
spring.jpa.hibernate.ddl-auto=update

# Set the Hibernate dialect for MySQL
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published