diff options
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 |