You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If variable properties are used in element names, such as ```@@PROP:my-server@@```, the names in both models will be resolved and matching elements will be merged.
305
+
306
+
#### Multiple Models and Delete Notation
307
+
308
+
A named element using [delete notation](#declaring-named-mbeans-to-delete) will completely replace an element with a matching name and no delete notation in a previous model. For example, if Model 1 looks like:
309
+
```yaml
310
+
topology:
311
+
Server:
312
+
m1:
313
+
ListenPort: 7000
314
+
Notes: "Server 1"
315
+
```
316
+
and Model 2 looks like:
317
+
```yaml
318
+
topology:
319
+
Server:
320
+
!m1:
321
+
```
322
+
The resulting model would be:
323
+
```yaml
324
+
topology:
325
+
Server:
326
+
!m1:
327
+
```
328
+
329
+
Similarly, an element without delete notation will completely replace an element with a matching name that has delete notation in a previous model. For example, if Model 1 looks like:
330
+
```yaml
331
+
topology:
332
+
Server:
333
+
!m1:
334
+
```
335
+
and Model 2 looks like:
336
+
```yaml
337
+
topology:
338
+
Server:
339
+
m1:
340
+
ListenPort: 7000
341
+
Notes: "Server 1"
342
+
```
343
+
The resulting model would be:
344
+
```yaml
345
+
topology:
346
+
Server:
347
+
m1:
348
+
ListenPort: 7000
349
+
Notes: "Server 1"
350
+
```
351
+
303
352
## Downloading and Installing the Software
304
353
305
354
The Oracle WebLogic Server Deploy Tooling project repository is located at [`https://github.com/oracle/weblogic-deploy-tooling`](https://github.com/oracle/weblogic-deploy-tooling). Binary distributions of the `weblogic-deploy.zip` installer can be downloaded from the [GitHub Releases page](https://github.com/oracle/weblogic-deploy-tooling/releases). To install the software, simply unzip the `weblogic-deploy.zip` installer on a machine that has the desired versions of WebLogic Server installed. After being unzipped, the software is ready to use, just set the `JAVA_HOME` environment variable to point to a Java 7 or higher JDK and the shell scripts are ready to run.
0 commit comments