Skip to content

Commit e2ea792

Browse files
committed
chore: disable thymeleaf view resolution in the application config, including example deployments, fixes #1504
1 parent 7d1b196 commit e2ea792

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

deploy/docker/configuration/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ spring:
3838
store-type: jdbc
3939
jdbc:
4040
initialize-schema: never
41+
thymeleaf:
42+
# explicitly disable thymeleaf view resolution
43+
enabled: false
4144

4245
security:
4346
oauth2:

deploy/openshift/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ spring:
3838
store-type: jdbc
3939
jdbc:
4040
initialize-schema: never
41+
thymeleaf:
42+
# explicitly disable thymeleaf view resolution
43+
enabled: false
4144

4245
security:
4346
oauth2:

server/src/dev/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ spring:
4242
store-type: jdbc
4343
jdbc:
4444
initialize-schema: never
45+
thymeleaf:
46+
# explicitly disable thymeleaf view resolution
47+
enabled: false
4548

4649
security:
4750
oauth2:

server/src/test/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ spring:
1212
store-type: jdbc
1313
jdbc:
1414
initialize-schema: never
15+
thymeleaf:
16+
# explicitly disable thymeleaf view resolution
17+
enabled: false
1518

1619
security:
1720
oauth2:

0 commit comments

Comments
 (0)