diff options
author | 2022-03-25 15:48:04 +0000 | |
---|---|---|
committer | 2022-03-25 15:48:04 +0000 | |
commit | 24479731fea8a35fdd1c384bd96b0e21068081c9 (patch) | |
tree | a62570f0bb79dc159c025ed38e8803edac36f3b9 /src | |
parent | 145a14310d109d367da9c854217f6c71a82e49b4 (diff) | |
parent | be383b488bf50af4fb58e567fa945229a84116af (diff) |
Merge "Update SpringBoot when approved version has Log4J 2.17.1 or higher"
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/application.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 67cd28ee..2d324c5b 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -34,6 +34,15 @@ security: username: ${DMI_USERNAME} password: ${DMI_PASSWORD} +# When updating to sprinboot 2.6.4 an exception would occur when starting the container +# "Failed to start bean 'documentationPluginsBootstrapper'. +# This is a known issue with springfox and springboot introduced in 2.6.x: +# https://github.com/springfox/springfox/issues/3462 +spring: + mvc: + pathmatch: + matching-strategy: ANT_PATH_MATCHER + # Actuator management: server: |