Last active
March 25, 2024 17:41
-
-
Save ApenasGabs/76662b69f18c731efedda559be91c0b6 to your computer and use it in GitHub Desktop.
application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.jpa.hibernate.ddl-auto=update | |
spring.jpa.database=mysql | |
spring.datasource.url=jdbc:mysql://localhost/db_personal_blog?createDatabaseIfNotExist=true&serverTimezone=America/Sao_Paulo&useSSl=false | |
spring.datasource.username=root | |
spring.datasource.password=yourpasswd | |
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver | |
spring.jpa.show-sql=true | |
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQLDialect | |
spring.jpa.properties.jakarta.persistence.sharedCache.mode=ENABLE_SELECTIVE | |
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss | |
spring.jackson.time-zone=Brazil/East | |
springdoc.api-docs.path=/v3/api-docs | |
springdoc.swagger-ui.path=/swagger-ui.html | |
springdoc.swagger-ui.operationsSorter=method | |
springdoc.swagger-ui.disable-swagger-default-url=true | |
springdoc.packagesToScan=com.generation.blogpessoal.controller | |
springdoc.swagger-ui.use-root-path=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment