User Tools
development:applications:ebonding:configuration
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| development:applications:ebonding:configuration [2017/02/07 12:23] – 1carew1 | development:applications:ebonding:configuration [2021/06/25 10:09] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== eBonding Configuration File ====== | ||
| + | The file is located in the usual grails config directory '/ | ||
| + | ===== Spring Security ===== | ||
| + | < | ||
| + | grails.plugin.springsecurity.interceptUrlMap = [ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | ] | ||
| + | grails.plugin.springsecurity.logout.postOnly = false | ||
| + | </ | ||
| + | |||
| + | ===== RabbitMQ Settings ===== | ||
| + | < | ||
| + | rabbitmq { | ||
| + | credentials { | ||
| + | username = ' | ||
| + | password = ' | ||
| + | host = ' | ||
| + | virtualHost = ' | ||
| + | } | ||
| + | queues { | ||
| + | //Incoming Message | ||
| + | ebondingQueue = ' | ||
| + | ticketerInboundQueue = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | ebondingOutboundQueue = " | ||
| + | } | ||
| + | exchanges { | ||
| + | //Incoming Message | ||
| + | soapExchangeName = ' | ||
| + | |||
| + | ticketerAuditEventExchange = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | // | ||
| + | ebondingOutboundExchange = ' | ||
| + | // | ||
| + | } | ||
| + | tags { | ||
| + | ebondingTag = ' | ||
| + | |||
| + | ticketAuditEventTag = ' | ||
| + | formValueChangeAuditTag = ' | ||
| + | } | ||
| + | bindings { | ||
| + | //In the Form " | ||
| + | //Incoming Message | ||
| + | ebondingBinding = " | ||
| + | |||
| + | auditEventBinding1 = " | ||
| + | auditEventBinding2 = " | ||
| + | |||
| + | //Outgoing Message | ||
| + | // | ||
| + | } | ||
| + | consumer { | ||
| + | name = ' | ||
| + | } | ||
| + | numberOfTriesBeforeFail = 1 | ||
| + | numberOfSecondsBetweeTries = 1 | ||
| + | numberOfSecondsToWaitForRabbitReconnect = 5 | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== Thread Management Settings ===== | ||
| + | < | ||
| + | threadmanager { | ||
| + | numberOfInboundThreads = 2 | ||
| + | numberOfOutboundThreads = 2 | ||
| + | nameOfInboundMessageThreads = ' | ||
| + | numberOfSecondsToWaitBeforeTimeoutForInbound = 20 | ||
| + | nameOfOutboundMessageThreads = ' | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== Database Connection Settings ===== | ||
| + | < | ||
| + | dataSource.pooled = true | ||
| + | dataSource.driverClassName = " | ||
| + | dataSource.dialect = " | ||
| + | dataSource.url = " | ||
| + | dataSource.username = " | ||
| + | dataSource.password = " | ||
| + | </ | ||
| + | |||
| + | ===== Overall Config File ===== | ||
| + | |||
| + | < | ||
| + | grails.plugin.springsecurity.securityConfigType = ' | ||
| + | grails.plugin.springsecurity.interceptUrlMap = [ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | [pattern: '/ | ||
| + | ] | ||
| + | |||
| + | grails.plugin.springsecurity.logout.postOnly = false | ||
| + | |||
| + | rabbitmq { | ||
| + | credentials { | ||
| + | username = ' | ||
| + | password = ' | ||
| + | host = ' | ||
| + | virtualHost = ' | ||
| + | } | ||
| + | queues { | ||
| + | //Incoming Message | ||
| + | ebondingQueue = ' | ||
| + | ticketerInboundQueue = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | ebondingOutboundQueue = " | ||
| + | } | ||
| + | exchanges { | ||
| + | //Incoming Message | ||
| + | soapExchangeName = ' | ||
| + | |||
| + | ticketerAuditEventExchange = ' | ||
| + | |||
| + | //Outgoing Message | ||
| + | // | ||
| + | ebondingOutboundExchange = ' | ||
| + | // | ||
| + | } | ||
| + | tags { | ||
| + | ebondingTag = ' | ||
| + | |||
| + | ticketAuditEventTag = ' | ||
| + | formValueChangeAuditTag = ' | ||
| + | } | ||
| + | bindings { | ||
| + | //In the Form " | ||
| + | //Incoming Message | ||
| + | ebondingBinding = " | ||
| + | |||
| + | auditEventBinding1 = " | ||
| + | auditEventBinding2 = " | ||
| + | |||
| + | //Outgoing Message | ||
| + | // | ||
| + | } | ||
| + | consumer { | ||
| + | name = ' | ||
| + | } | ||
| + | numberOfTriesBeforeFail = 1 | ||
| + | numberOfSecondsBetweeTries = 1 | ||
| + | numberOfSecondsToWaitForRabbitReconnect = 5 | ||
| + | } | ||
| + | |||
| + | threadmanager { | ||
| + | numberOfInboundThreads = 2 | ||
| + | numberOfOutboundThreads = 2 | ||
| + | nameOfInboundMessageThreads = ' | ||
| + | numberOfSecondsToWaitBeforeTimeoutForInbound = 20 | ||
| + | nameOfOutboundMessageThreads = ' | ||
| + | } | ||
| + | |||
| + | |||
| + | dataSource.pooled = true | ||
| + | dataSource.driverClassName = " | ||
| + | dataSource.dialect = " | ||
| + | dataSource.url = " | ||
| + | dataSource.username = " | ||
| + | dataSource.password = " | ||
| + | </ | ||