Oracle WebLogic Server APIs · Schema
ServerConfiguration
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Server name |
| listenAddress | string | Listen address for the server |
| listenPort | integer | Listen port for the server |
| SSLListenPort | integer | SSL listen port |
| cluster | string | Cluster this server belongs to |
| machine | string | Machine this server is assigned to |
| listenPortEnabled | boolean | Whether the plain-text listen port is enabled |
| clientCertProxyEnabled | boolean | Whether client cert proxy is enabled |
| startupMode | string | Server startup mode |
| autoRestart | boolean | Whether the server automatically restarts on failure |
| restartMax | integer | Maximum number of restart attempts |
| javaCompiler | string | Java compiler to use for JSP compilation |
| stagingMode | string | Application staging mode |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerConfiguration",
"title": "ServerConfiguration",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Server name"
},
"listenAddress": {
"type": "string",
"description": "Listen address for the server"
},
"listenPort": {
"type": "integer",
"description": "Listen port for the server",
"default": 7001
},
"SSLListenPort": {
"type": "integer",
"description": "SSL listen port"
},
"cluster": {
"type": "string",
"description": "Cluster this server belongs to"
},
"machine": {
"type": "string",
"description": "Machine this server is assigned to"
},
"listenPortEnabled": {
"type": "boolean",
"description": "Whether the plain-text listen port is enabled"
},
"clientCertProxyEnabled": {
"type": "boolean",
"description": "Whether client cert proxy is enabled"
},
"startupMode": {
"type": "string",
"description": "Server startup mode",
"enum": [
"RUNNING",
"STANDBY",
"ADMIN"
]
},
"autoRestart": {
"type": "boolean",
"description": "Whether the server automatically restarts on failure"
},
"restartMax": {
"type": "integer",
"description": "Maximum number of restart attempts"
},
"javaCompiler": {
"type": "string",
"description": "Java compiler to use for JSP compilation"
},
"stagingMode": {
"type": "string",
"description": "Application staging mode",
"enum": [
"stage",
"nostage",
"external_stage"
]
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
},
"required": [
"name"
]
}