Table of Contents |
---|
Asynchronous algorithm configuration
...
Parameter | Default value | Description | ||
ohf.mail.admin |
| Administrator email(s) If more emails, then separated them with semicolon if empty then email won't be sent. | ||
ohf.mail.from | OpenHub framework <openhub@openwise.cz> | Email address FROM for sending emails | ||
ohf.mail.smtp.server | localhost | SMTP server for sending emails | ||
ohf.dir.temp | Directory for storing temporary files, related to DefaultFileRepository | |||
ohf.dir.fileRepository | File repository directory where files will be stored, related to DefaultFileRepository | |||
ohf.servercontextCall.localhostUri | http://localhost:8080 | URI of this localhost application, including port number. | ||
ohf.server.localhostUri.check | false | Enable/disable checking of URI defined by ohf.server.localhostUri | ||
ohf.throttling.disableRelated to external call in Admin GUI | ||||
disable.throttling | false | True for disabling throttling at all. See throttling component. | ||
ohf.endpoints.includePattern | ^(spring-ws|servlet).*$ | Pattern for filtering endpoints URI - only whose URIs will match specified pattern will be returned, related to endpoints overview. | ||
ohf.requestSaving.enable | false | True for enabling saving requests/responses for filtered endpoints URI. | ||
ohf.requestSaving.endpointFilter | ^(spring-ws|servlet).*$ | Pattern for filtering endpoints URI which requests/response should be saved. | ||
ohf.alerts.repeatTime | 300 | How often to run checking of alerts (in seconds | ohf.uri.inputPattern | ^(spring-ws ) |
application.cfg
Parameter | Default value | Description | ||
db.driver | org.h2.Driver | Driver class name | ||
db.url | jdbc:h2:mem:openHubDB | Database URL | ||
db.username | sa | Database username | ||
db.password | Database password | |||
ws.user | wsUser | Username for accessing web services (Spring security configuration in rootSecurity.xml). | ||
ws.password | wsPassword | Password for accessing web services (Spring security configuration in rootSecurity.xml). | ||
web.user | webUser | Username for accessing web admin GUI (Spring security configuration in rootSecurity.xml). | ||
web.password | webPassword | Password for accessing web admin GUI (Spring security configuration in rootSecurity.xml). | ||
monitoring.user | monUser | Username for accessing JavaMelody tool (Spring security configuration in rootSecurity.xml). | ||
monitoring.password | monPassword | Password for accessing JavaMelody tool (Spring security configuration in rootSecurity.xml). | ||
log.folder.path | ${log.folder}, value is from Maven profile | Path to folder with application logs, used in logs searching in admin GUI. | ||
log.file.pattern |
| Defines format of log file names (include filter) which will be taking into logs searching in admin GUI. |
...
Configuration checker (org.openhubframework.openhub.core.conf.ConfigurationChecker) enables to check selected configuration parameters during application start:
- ohf.serverdirectCall.localhostUri - checks URI availability (must be explicitly enabled by the property ohf.server.localhostUri.check)
- ohf.endpoints.includePattern, ohf.requestSaving requestSaving.endpointFilter - checks regular expressions
...