diff options
author | romaingimbert <romain.gimbert@orange.com> | 2019-02-01 15:05:15 +0100 |
---|---|---|
committer | romaingimbert <romain.gimbert@orange.com> | 2019-02-01 15:05:15 +0100 |
commit | 7093b767e7d9a76c4f91ec98e95a9b1ea8a5e14d (patch) | |
tree | bf5d63b7d170504e490ca415345543d855dcbf62 /src/main/resources | |
parent | 2afa1a1b9b020c0ada15581658268e98b7219a64 (diff) |
Update to Spring Boot 2
-update pom dependencies
-fix code
-fix test
Change-Id: I23c3c702c598ce46e5b861a2fbdfd06f2d439c51
Issue-ID: EXTAPI-192
Signed-off-by: romaingimbert <romain.gimbert@orange.com>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/application-test.properties | 4 | ||||
-rw-r--r-- | src/main/resources/application.properties | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/resources/application-test.properties b/src/main/resources/application-test.properties index b890216..b959b47 100644 --- a/src/main/resources/application-test.properties +++ b/src/main/resources/application-test.properties @@ -17,7 +17,7 @@ nbi.version = v3 # SERVER -server.contextPath = /nbi/api/${nbi.version} +server.servlet.context-path = /nbi/api/${nbi.version} server.port = 8080 # LOGGING @@ -29,7 +29,7 @@ onap.tenantId = 31047205ce114b60833b23e400d6a535 onap.cloudOwner = CloudOwner # NBI -nbi.url = http://localhost:${server.port}${server.contextPath} +nbi.url = http://localhost:${server.port}${server.servlet.context-path} nbi.callForVNF = false # SCHEDULER diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 6a66737..633e029 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -23,7 +23,7 @@ spring.profiles.active = default nbi.version = v3 # SERVER -server.contextPath = /nbi/api/${nbi.version} +server.servlet.context-path = /nbi/api/${nbi.version} server.port = 8080 # LOGGING @@ -35,7 +35,7 @@ onap.tenantId = 6e97a2bd51d74f6db5671d8dc1517d82 onap.cloudOwner = CloudOwner # NBI -nbi.url = http://localhost:${server.port}${server.contextPath} +nbi.url = http://localhost:${server.port}${server.servlet.context-path} nbi.callForVNF = false # SCHEDULER |