added status service to application.properties, corrected date format in the logback.xml

This commit is contained in:
Dmitry Toptygin
2020-05-17 11:11:56 -04:00
parent 123c3c2f26
commit ae344b4e1e
7 changed files with 8 additions and 6 deletions

View File

@@ -95,6 +95,7 @@ tip.wlan.csrf-enabled=false
#properties that configure remote interfaces to communicate with cloud
# when separate portal - prov - ssc processes are in use:
#tip.wlan.cloudEventDispatcherBaseUrl=https://localhost:9031
#tip.wlan.statusServiceBaseUrl=https://localhost:9031
#tip.wlan.customerServiceBaseUrl=https://localhost:9091
#tip.wlan.locationServiceBaseUrl=https://localhost:9091
#tip.wlan.equipmentServiceBaseUrl=https://localhost:9091
@@ -103,6 +104,7 @@ tip.wlan.csrf-enabled=false
# For all-cloud-in-one-process :
tip.wlan.cloudEventDispatcherBaseUrl=https://localhost:9092
tip.wlan.statusServiceBaseUrl=https://localhost:9092
tip.wlan.customerServiceBaseUrl=https://localhost:9092
tip.wlan.locationServiceBaseUrl=https://localhost:9092
tip.wlan.equipmentServiceBaseUrl=https://localhost:9092

View File

@@ -10,7 +10,7 @@
<configuration>
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-DD HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>