diff options
author | 2025-02-02 19:35:57 +0100 | |
---|---|---|
committer | 2025-02-25 15:06:52 +0100 | |
commit | 189fc6c780214515fae45faa0d3a71fd31addb58 (patch) | |
tree | 24618be4352adc02c97ce349298d8688b7ca8411 /src/test/resources/application-test.properties | |
parent | b02b6f3fa5474d1cf4f5c7d9005ffaf8a09b8fc6 (diff) |
Issue-ID: AAI-4116
Change-Id: I894e0b0482df4078791cb58d0259852be02c2255
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'src/test/resources/application-test.properties')
-rw-r--r-- | src/test/resources/application-test.properties | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/test/resources/application-test.properties b/src/test/resources/application-test.properties index f85c97a..40a4156 100644 --- a/src/test/resources/application-test.properties +++ b/src/test/resources/application-test.properties @@ -1,7 +1,7 @@ spring.application.name=GraphAdmin -server.contextPath=/ +server.servlet.context-path=/ spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration # These two properties represent whether it should use component scan @@ -31,7 +31,8 @@ server.local.startpath=src/main/resources server.basic.auth.location=${server.local.startpath}/etc/auth/realm.properties server.port=8449 -security.require-ssl=false +# This property is deprecated: The security auto-configuration is no longer customizable. Provide your own WebSecurityConfigurer bean instead. +# security.require-ssl=false server.ssl.enabled=false # Schema related attributes for the oxm and edges @@ -75,7 +76,8 @@ aaf.cadi.file=${server.local.startpath}/cadi.properties management.server.port=0 management.endpoints.enabled-by-default=true management.endpoints.web.exposure.include=info, health, loggers, prometheus -management.metrics.web.server.auto-time-requests=false +# This property is deprecated: Should be applied at the ObservationRegistry level. +# management.metrics.web.server.request.autotime.enabled=false aai.notifications.enabled=false |