<limitedMemoryExchangeStore maxSize="1048576" id="es" />
<router exchangeStore="es">
<!-- service proxy declarations here -->
</router>
Name | Required | Default | Description | Example |
---|---|---|---|---|
bodyExceedingMaxSizeStrategy | false | TRUNCATE |
The strategy to use (TRUNCATE or ERROR) when a HTTP message body is larger than the maxBodySize. TRUNCATE means that only the first bytes are kept in memory. ERROR means that HTTP requests exceeding this limit will cause an error and not be processed any further: If the request exceeds the limit, it will not be processed further; if the response exceeds the limit, it will not be processed further. ("Further processing" usually includes transmission over a network.)
|
- |
maxBodySize | false | 100000 |
Maximum body size limit in bytes. If bodies are collected, which exceed this limit, the strategy determines, what happens. |
- |
maxSize | false | 1000000 |
Threshold limit in bytes until old exchanges are dropped.
|
1048576(1Mb) |