GSB 7.0 Standardlösung

GSB Applikation eventdispatcher

Die Applkation eventdispatcher ist für die Verarbeitung von Content-Events zuständig und wird bspw. für die Generierung von Push-Newslettern genutzt.

Die Datei application.properties enthält die Konfiguration der Applikation.

Konfigurationsdatei application.properties (Service-Instanz eventdispatcher-preview)

#
# Copyright © 2018 Materna Information & Communications SE
#

logging.config=${gsb.software.dir}/logback-spring.xml

server.port=6511

eventdispatcher.repository.url=http://repository.preview.example.com:6001

eventdispatcher.newsletter.url=http://newsletter.preview.example.com:6121
eventdispatcher.serviceportal.url=http://serviceportal.service.example.com
eventdispatcher.maildistributor.url=http://maildistributor.service.example.com:9801

Beschreibung der application-Properties

Property-NameBeschreibung
logging.configPfad zur Logback-Konfiguration. Die Default Logback-Konfiguration liegt in der installierten GSB-Applikation, der Pfad zum Installationsverzeichnis ist in der Systemproperty gsb.software.dir definiert. Standard Spring-Boot-Property, Details zur Logging-Konfiguration s.a. https://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html
server.portPortnummer auf dem der Http-Port der Applikation läuft. Standard Spring-Boot-Property (s.a. https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html)
eventdispatcher.repository.urlUrl unter der das Contentrepository erreichbar ist (Format Schema://Servername:Portnummer)
eventdispatcher.newsletter.urlUrl unter welcher der Site-Server für die Generierung von Push-Newslettern erreichbar ist (Format Schema://Servername:Portnummer)
eventdispatcher.serviceportal.urlUrl unter welcher das Serviceportal erreichbar ist (Format Schema://Servername:Portnummer)
eventdispatcher.maildistributor.urlUrl unter welcher der Maildistributor erreichbar ist (Format Schema://Servername:Portnummer)