Chatto/chatto/src/main/resources/application.properties

25 lines
1.1 KiB
Properties
Raw Normal View History

2019-10-04 10:10:26 +00:00
#
### Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
#spring.datasource.url = jdbc:mysql://localhost:3306/chatto_db?useSSL=false
#spring.datasource.username = chatto_user
#spring.datasource.password = password
2019-09-17 07:33:38 +00:00
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
## Hibernate Properties
# The SQL dialect makes Hibernate generate better SQL for the chosen database
2020-05-22 04:48:36 +00:00
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
2019-09-17 07:33:38 +00:00
# Hibernate ddl auto (create, create-drop, validate, update)
2020-05-22 04:48:36 +00:00
spring.jpa.hibernate.ddl-auto=validate
spring.jpa.open-in-view=false
logging.level.org.hibernate.stat=debug
2019-09-17 07:33:38 +00:00
logging.level.org.springframework.web=DEBUG
logging.level.web=DEBUG
logging.level.org.hibernate.SQL=DEBUG
logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
2020-05-22 04:48:36 +00:00
# spring.http.log-request-details=true
2019-10-02 16:25:46 +00:00
#spring.jackson.date-format=yyyy-MM-d
spring.jackson.serialization.write-dates-as-timestamps=false
2019-10-15 05:28:56 +00:00
spring.cache.jcache.config=classpath:ehcache.xml
2020-05-22 04:48:36 +00:00
logging.level.org.springframework.cache=DEBUG
chatto.token.timeout-duration=1
2020-01-15 11:12:22 +00:00
chat-bundle=bundle.js
2019-12-13 15:34:36 +00:00
# spring.devtools.add-properties=false