application.yml
595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
spring:
application.name: grog-db-generator
profiles.active: prod
main:
web-environment: false
banner-mode: off
---
spring:
profiles: prod
datasource:
driverClassName: com.mysql.jdbc.Driver
initialize: false
url: jdbc:mysql://localhost:3306/grogdev
username: grogdev
password: grogdev
jpa:
show-sql: true
generate-ddl: true
hibernate:
ddl-auto: create
---
spring:
profiles: test
datasource:
driverClassName: org.h2.Driver
initialize: true
jpa:
show-sql: true
hibernate:
ddl-auto: create-drop