backend/restservice/src/main/resources/application.properties

14 lines
594 B
Properties
Raw Normal View History

2020-06-10 10:53:22 +02:00
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
2020-07-27 18:39:44 +02:00
spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=yes&characterEncoding=UTF-8
2020-06-10 10:53:22 +02:00
spring.datasource.username=root
spring.datasource.password=example
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.open-in-view=true
2020-07-25 10:21:42 +02:00
spring.jpa.hibernate.ddl-auto=create-drop
spring.jackson.serialization.fail-on-empty-beans=false
2020-10-19 11:12:24 +02:00
spring.main.allow-bean-definition-overriding=true
2020-10-28 13:44:13 +01:00
spring.jackson.default-property-inclusion = NON_NULL
2020-06-10 10:53:22 +02:00
server.port=1285
plannaplan.frontendUrl = http://localhost:3000