Displaying the server configuration in a merged view
You can use the Merged Configuration view to see a flattened view of the server configuration and any included configuration files.
About this task
server.xml
file, which can
make the configuration difficult to read without tools. The Merged
Configuration view provides a flattened view of the server configuration and any
included configuration files. This is a read-only view and cannot be edited. Procedure
To display the server configuration in a merged view:
In the Servers view, right-click the server configuration and select Open Merged
View.
Example
This is a screen capture of the Server Configuration editor that uses the
Include element to embed the common.xml file into the
server.xml configuration file:

Here is an example of the source code for the server.xml file. Look at the
include tag which imports the common.xml
file:
<server>
<featureManager>
<feature>jsp-2.2</feature>
<feature>servlet-3.0</feature>
</featureManager>
<application id="Web2.5" location="Web2.5.war" name="Web2.5" type="war"/>
<include location="common.xml"/>
</server>
Here is an example of the source code for the common.xml
file:
<server>
<application id="Setup" location="Setup.war" name="Setup" type="war"/>
</server>
This is a screen capture of the Merged Configuration view:

Look under the Configuration Structure sections to see the difference between the Server Configuration editor and Merged Configuration view. The Merged Configuration view replaces the Include: common.xml element from the Server Configuration editor with Application: Setup element.