|
1 | 1 | ## Tools Configuration
|
| 2 | + - [Tool Property File](#tool-property-file) |
2 | 3 | - [Model Filters](#model-filters)
|
3 | 4 | - [Target Environments](config/target_env.md)
|
4 | 5 | - [Type Definitions](#domain-type-definitions)
|
5 | 6 | - [Variable Injection](variable_injection.md)
|
6 | 7 | - [Custom Configuration](#custom-configuration)
|
7 | 8 |
|
| 9 | + ### Tool Property File |
| 10 | + You can configure or tune WebLogic Deploy Tooling tools using the tool property file. This property file is installed as `<weblogic-deploy>/lib/tool.properties`. You may change the value of any of the properties in this file to tune the WDT tool. Another option is to configure the tool properties in a Custom Configuration directory. Create the `tool.properties` file in the $WDT_CUSTOM_CONFIG directory. |
| 11 | + |
| 12 | + If a property is removed from the file, or a property value is incorrectly formatted, a `WARNING` message is logged and an internal default value used instead of the missing or bad value. |
| 13 | + |
| 14 | + | Property | Description | |
| 15 | + | -------- | ----- | |
| 16 | + | `connect.timeout` | The number of milliseconds that WLST waits for the online `connect` command to complete. A value of 0 means the operation will not timeout. | |
| 17 | + | `activate.timeout` | The number of milliseconds that WLST waits for the activation of configuration changes to complete. A value of -1 means the operation will not timeout. | |
| 18 | + | `deploy.timeout` | The number of milliseconds that WLST waits for the undeployment process to complete. A value of 0 means the operation will not timeout. | |
| 19 | + | `redeploy.timeout` | The number of milliseconds that WLST waits for the redeployment process to complete. A value of 0 means the operation will not timeout. | |
| 20 | + | `start.application.timeout` | The number of milliseconds that WLST waits for the start application process to complete. A value of 0 means the operation will not timeout. | |
| 21 | + | `stop.application.timeout` | The number of milliseconds that WLST waits for the stop application process to complete. A value of 0 means the operation will not timeout. | |
| 22 | + | `set.server.groups.timeout` | Specifies the amount of time the set server groups connection can be inactive before the connection times out. | |
| 23 | + |
8 | 24 | ### Model Filters
|
9 | 25 |
|
10 | 26 | WebLogic Deploy Tooling supports the use of model filters to manipulate the domain model. The Create Domain, Update Domain, and Deploy Applications Tools apply filters to the model after it is read, before it is validated and applied to the domain. The Discover Domain Tool applies filters to the model after it has been discovered, before the model is validated and written.
|
@@ -239,6 +255,7 @@ def filter_model(model):
|
239 | 255 | variable_keywords.json
|
240 | 256 | ```
|
241 | 257 | This is a full set of files that can be configured. You will need only to add the files you have created or extended. Details for each configuration type are found at:
|
| 258 | + - [Tool Property File](#tool-property-file) |
242 | 259 | - [Model Filters](#model-filters)
|
243 | 260 | - [Type Definitions](#domain-type-definitions) (See the [example](#example-extending-a-type-definition) below.)
|
244 | 261 | - [Variable Injection](variable_injection.md)
|
|
0 commit comments