Skip to content

Commit a254a6c

Browse files
committed
## 2.3.32
* Issue #317 switch Context is broken * Issue #318 Broken: http://localhost:8080/taskstate/task/1153/changeorderto/1051 * fixed #319 groovy-all Warning during startup * fixed #320 warning: SLF4J: Class path contains multiple SLF4J bindings. * fixed #321 jar is too fat for deployment on heroku
1 parent ad85899 commit a254a6c

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

src/main/resources/application.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,22 @@ org:
8484
strengthBCryptPasswordEncoder: 10
8585
---
8686
spring:
87-
profile: default
8887
datasource:
8988
url: jdbc:postgresql://localdbhost:5432/simpleworklist
89+
profiles:
90+
active: default
9091
---
9192
spring:
92-
profile: developing
9393
datasource:
9494
url: jdbc:postgresql://localdbhost:5432/simpleworklist_developing
9595
jpa:
9696
hibernate:
9797
ddl-auto: update
9898
#ddl-auto: create-drop
99+
profiles:
100+
active: developing
99101
---
100102
spring:
101-
profile: travis
102103
datasource:
103104
url: jdbc:postgresql://localdbhost:5432/simpleworklist_travis
104105
continue-on-error: true
@@ -107,19 +108,22 @@ spring:
107108
hibernate:
108109
ddl-auto: update
109110
#ddl-auto: create-drop
111+
profiles:
112+
active: travis
110113
server:
111114
compression:
112115
enabled: false
113116
---
114117
spring:
115-
profile: testing
116118
datasource:
117119
url: jdbc:postgresql://localdbhost:5432/simpleworklist_testing
118120
jpa:
119121
show-sql: false
120122
hibernate:
121123
ddl-auto: update
122124
#ddl-auto: create-drop
125+
profiles:
126+
active: testing
123127
server:
124128
compression:
125129
enabled: false
@@ -147,7 +151,6 @@ logging:
147151
impl: DEBUG
148152
---
149153
spring:
150-
profile: qa
151154
datasource:
152155
url: jdbc:postgresql://localdbhost:5432/simpleworklist_qa
153156
continue-on-error: true
@@ -156,6 +159,8 @@ spring:
156159
hibernate:
157160
ddl-auto: update
158161
#ddl-auto: create-drop
162+
profiles:
163+
active: qa
159164
server:
160165
compression:
161166
enabled: false
@@ -183,7 +188,6 @@ logging:
183188
impl: DEBUG
184189
---
185190
spring:
186-
profile: heroku
187191
datasource:
188192
url: jdbc:postgresql://localdbhost:5432/simpleworklist_heroku
189193
continue-on-error: true
@@ -205,6 +209,8 @@ spring:
205209
application:
206210
admin:
207211
enabled: false
212+
profiles:
213+
active: heroku
208214
server:
209215
compression:
210216
enabled: true

src/main/resources/logback.xml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<configuration>
33
<include resource="org/springframework/boot/logging/logback/base.xml"/>
4-
<logger name="org.woehlke.simpleworklist.application" level="DEBUG" />
5-
<logger name="org.woehlke.simpleworklist.application.config" level="DEBUG" />
6-
<logger name="org.woehlke.simpleworklist.control.admin" level="DEBUG" />
7-
<logger name="org.woehlke.simpleworklist.control.anonymous" level="DEBUG" />
8-
<logger name="org.woehlke.simpleworklist.application.common" level="DEBUG" />
9-
<logger name="org.woehlke.simpleworklist.control.user" level="DEBUG" />
10-
<logger name="org.woehlke.simpleworklist.model.beans" level="DEBUG" />
11-
<logger name="org.woehlke.simpleworklist.model.dao" level="DEBUG" />
12-
<logger name="org.woehlke.simpleworklist.model.services" level="DEBUG" />
13-
<logger name="org.woehlke.simpleworklist.oodm.entities" level="DEBUG" />
14-
<logger name="org.woehlke.simpleworklist.oodm.repository" level="DEBUG" />
15-
<logger name="org.woehlke.simpleworklist.oodm.services" level="DEBUG" />
4+
<logger name="org.woehlke.simpleworklist.application" level="INFO" />
5+
<logger name="org.woehlke.simpleworklist.domain" level="DEBUG" />
6+
<logger name="org.woehlke.simpleworklist.services" level="INFO" />
7+
<logger name="org.woehlke.simpleworklist.user" level="INFO" />
168
<logger name="org.woehlke.simpleworklist" level="INFO" />
179
<logger name="org.apache.http" level="WARN" />
1810
<logger name="org.apache.tomcat" level="WARN" />

0 commit comments

Comments
 (0)