Are you an LLM? You can read better optimized documentation at /reference/config/basic.md for this page in Markdown format
Basic
TIP
The current configuration documentation only covers specification-level public configurations. For specific configurations of each module, please refer to the configuration documentation of the respective module.
WowProperties
- WowProperties
- Prefix:
wow.
| Name | Data Type | Description | Default Value |
|---|---|---|---|
enabled | Boolean | Whether to enable | true |
context-name | String | Bounded context name | ${spring.application.name} |
BusProperties
BusPropertiesis the common configuration forCommandBusandEventBus.
| Name | Data Type | Description | Default Value |
|---|---|---|---|
type | BusType | Message bus type | kafka |
local-first | LocalFirstProperties | LocalFirst mode |
BusType
kotlin
enum class BusType {
KAFKA,
REDIS,
IN_MEMORY,
NO_OP;
}LocalFirstProperties
| Name | Data Type | Description | Default Value |
|---|---|---|---|
enabled | Boolean | Whether to enable | true |