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

10 lines
439 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-25 09:58:40 +02:00
spring.datasource.url=jdbc:mysql://172.20.0.2: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-06-11 19:02:11 +02:00
spring.jpa.hibernate.ddl-auto=create
spring.jackson.serialization.fail-on-empty-beans=false
2020-06-10 10:53:22 +02:00
server.port=1285